From 9c404ac98cea054aaae865b110b71b22b4332828 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Wed, 1 Oct 2025 16:46:29 +0200 Subject: [PATCH] feat: enable blink signature Signed-off-by: Lander Van den Bulcke --- config/plugins/cmp/cmp.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/config/plugins/cmp/cmp.nix b/config/plugins/cmp/cmp.nix index dd519b1..785bf8b 100644 --- a/config/plugins/cmp/cmp.nix +++ b/config/plugins/cmp/cmp.nix @@ -2,6 +2,19 @@ plugins = { blink-cmp = { enable = true; + settings = { + signature = { + enabled = true; + trigger = { + enabled = true; + show_on_keyword = true; + show_on_insert = true; + }; + window = { + show_documentation = true; + }; + }; + }; }; }; }