feat(neovim): use blink.cmp's auto signature feature

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2025-04-23 18:00:01 -03:00
parent 106d9db7f2
commit d8b6f05c1e
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 10 additions and 1 deletions

View file

@ -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 = {

View file

@ -0,0 +1,9 @@
---@type LazySpec
return {
"Saghen/blink.cmp",
opts = {
signature = {
enabled = true,
},
},
}