1
0
Fork 0
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:
Henrik Hautakoski 2025-09-29 15:19:16 +02:00
parent 0ddd0309ca
commit bee8e35ae8

View file

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