feat(nvim): add border to cmp dialogs

This commit is contained in:
Stefan Imhoff
2024-01-01 13:23:14 +01:00
parent 61d0ba19f2
commit e844195053

View File

@@ -23,6 +23,11 @@ return {
end,
}
opts.window = {
completion = cmp.config.window.bordered(),
documentation = cmp.config.window.bordered(),
}
vim.api.nvim_set_hl(0, "CmpItemKindCopilot", { fg = "#6CC644" })
vim.api.nvim_set_hl(0, "CmpItemAbbrMatch", { fg = "NONE", bg = "#000000" })