From d8b6f05c1e809d02888b3a3a24223bc3f5fff09f Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Wed, 23 Apr 2025 18:00:01 -0300 Subject: [PATCH] feat(neovim): use blink.cmp's auto signature feature --- modules/neovim/lsp.lua | 2 +- modules/neovim/lua/plugins/blink-cmp.lua | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 modules/neovim/lua/plugins/blink-cmp.lua diff --git a/modules/neovim/lsp.lua b/modules/neovim/lsp.lua index 40939f9..457db21 100644 --- a/modules/neovim/lsp.lua +++ b/modules/neovim/lsp.lua @@ -16,7 +16,7 @@ return { codelens = true, -- enable/disable codelens refresh on start inlay_hints = true, -- enable/disable inlay hints on start semantic_tokens = true, -- enable/disable semantic token highlighting - signature_help = true, -- enable/disable automatic signature help + signature_help = false, -- enable/disable automatic signature help }, -- customize lsp formatting options formatting = { diff --git a/modules/neovim/lua/plugins/blink-cmp.lua b/modules/neovim/lua/plugins/blink-cmp.lua new file mode 100644 index 0000000..f03b39e --- /dev/null +++ b/modules/neovim/lua/plugins/blink-cmp.lua @@ -0,0 +1,9 @@ +---@type LazySpec +return { + "Saghen/blink.cmp", + opts = { + signature = { + enabled = true, + }, + }, +}