fix(neovim): correctly configure signature_help
This commit is contained in:
parent
cfbda37c19
commit
106d9db7f2
2 changed files with 4 additions and 5 deletions
|
@ -10,13 +10,12 @@ return {
|
|||
opts = {
|
||||
-- Configure core features of AstroNvim
|
||||
features = {
|
||||
autopairs = true, -- enable autopairs at start
|
||||
cmp = true, -- enable completion at start
|
||||
autopairs = true, -- enable autopairs at start
|
||||
cmp = true, -- enable completion at start
|
||||
diagnostics = true, -- enable diagnostics at start
|
||||
highlighturl = true, -- highlight URLs at start
|
||||
notifications = true, -- enable notifications at start
|
||||
signature_help = true, -- enable automatically showing signature help
|
||||
large_buf = { -- set global limits for large files for disabling features like treesitter
|
||||
large_buf = { -- set global limits for large files for disabling features like treesitter
|
||||
size = 1024 * 100,
|
||||
lines = 10000,
|
||||
line_length = 1000,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue