[CMP] Debug border missing

This commit is contained in:
2026-01-05 07:18:35 +01:00
parent 723d541443
commit e0371f685c
2 changed files with 5 additions and 3 deletions

View File

@@ -3,6 +3,10 @@ local opts = utils.opts
local keymap = vim.keymap
keymap.set({ 'n', 'i', 'v' }, "<C-S-A-i>", function ()
vim.show_pos()
end, opts("Show inspect"))
-- Scroll more
keymap.set({ "n", "v" }, "<C-S-e>", "4<C-e>", opts("Scroll four lines up"))
keymap.set({ "n", "v" }, "<C-S-y>", "4<C-y>", opts("Scroll four lines down"))

View File

@@ -29,9 +29,7 @@ return {
window = {
documentation = cmp.config.window.bordered(),
completion = cmp.config.window.bordered({
winhighlight = "Normal:CmpPmenu,CursorLine:PmenuSel,Search:None",
}),
completion = cmp.config.window.bordered(),
},
snippet = { -- configure how nvim-cmp interacts with snippet engine