1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-07-02 22:43:41 +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 format = require("user.utils.cmp_format")
-- local lspkind = require("user.utils.lspkind") -- local lspkind = require("user.utils.lspkind")
local selectPrev = utils.selectPrev({ behavior = cmp.SelectBehavior.Insert }) local selectPrev = utils.selectPrev({ behavior = cmp.SelectBehavior.Select })
local selectNext = utils.selectNext({ behavior = cmp.SelectBehavior.Insert }) local selectNext = utils.selectNext({ behavior = cmp.SelectBehavior.Select })
return { return {
preselect = false, preselect = false,
@ -72,11 +72,11 @@ return {
}, },
}, },
}, },
-- experimental = { experimental = {
-- ghost_text = { ghost_text = {
-- hl_group = "NonText", hl_group = "NonText",
-- }, },
-- }, },
} }
end, end,
config = function(_, opts) config = function(_, opts)