feat(neovim): use blink.cmp's auto signature feature
This commit is contained in:
parent
106d9db7f2
commit
d8b6f05c1e
2 changed files with 10 additions and 1 deletions
|
@ -16,7 +16,7 @@ return {
|
||||||
codelens = true, -- enable/disable codelens refresh on start
|
codelens = true, -- enable/disable codelens refresh on start
|
||||||
inlay_hints = true, -- enable/disable inlay hints on start
|
inlay_hints = true, -- enable/disable inlay hints on start
|
||||||
semantic_tokens = true, -- enable/disable semantic token highlighting
|
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
|
-- customize lsp formatting options
|
||||||
formatting = {
|
formatting = {
|
||||||
|
|
9
modules/neovim/lua/plugins/blink-cmp.lua
Normal file
9
modules/neovim/lua/plugins/blink-cmp.lua
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
---@type LazySpec
|
||||||
|
return {
|
||||||
|
"Saghen/blink.cmp",
|
||||||
|
opts = {
|
||||||
|
signature = {
|
||||||
|
enabled = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue