mirror of
https://github.com/pnx/dotfiles
synced 2026-06-18 20:10:03 +02:00
nvim/lua/user/plugins/ide/autocomplete.lua: update
This commit is contained in:
parent
0ddd0309ca
commit
bee8e35ae8
1 changed files with 3 additions and 2 deletions
|
|
@ -22,13 +22,14 @@ return {
|
||||||
selection = {
|
selection = {
|
||||||
preselect = function(ctx) return ctx.mode ~= 'cmdline' end,
|
preselect = function(ctx) return ctx.mode ~= 'cmdline' end,
|
||||||
-- auto_insert = function(ctx) return ctx.mode ~= 'cmdline' end
|
-- auto_insert = function(ctx) return ctx.mode ~= 'cmdline' end
|
||||||
auto_insert = false
|
auto_insert = true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
menu = {
|
menu = {
|
||||||
min_width = 18,
|
min_width = 18,
|
||||||
winblend = 10,
|
winblend = 10,
|
||||||
draw = {
|
draw = {
|
||||||
|
gap = 2,
|
||||||
columns = {
|
columns = {
|
||||||
{ "kind_icon" },
|
{ "kind_icon" },
|
||||||
{ "label", "source_name", gap = 1 },
|
{ "label", "source_name", gap = 1 },
|
||||||
|
|
@ -52,7 +53,7 @@ return {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ghost_text = {
|
ghost_text = {
|
||||||
enabled = true,
|
enabled = false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
signature = {
|
signature = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue