1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim/lua/user/plugins/editor/autocomplete.lua: update

This commit is contained in:
Henrik Hautakoski 2024-11-28 12:06:55 +01:00
parent dd69e31f9f
commit c9e8f3a2d7

View file

@ -13,8 +13,8 @@ return {
local format = require("user.utils.cmp_format")
-- local lspkind = require("user.utils.lspkind")
local selectPrev = utils.selectPrev({ behavior = cmp.SelectBehavior.Insert })
local selectNext = utils.selectNext({ behavior = cmp.SelectBehavior.Insert })
local selectPrev = utils.selectPrev({ behavior = cmp.SelectBehavior.Select })
local selectNext = utils.selectNext({ behavior = cmp.SelectBehavior.Select })
return {
preselect = false,
@ -72,11 +72,11 @@ return {
},
},
},
-- experimental = {
-- ghost_text = {
-- hl_group = "NonText",
-- },
-- },
experimental = {
ghost_text = {
hl_group = "NonText",
},
},
}
end,
config = function(_, opts)