Make menu look nicer
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 2m45s

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-06-18 12:20:25 +02:00
parent 5df773756e
commit 5f052bf9ae
+9 -3
View File
@@ -18,11 +18,17 @@ cmp.setup({
-- Add borders to the windows -- Add borders to the windows
view = { view = {
entries = "custom", entries = { name = "custom", selection_order = "near_cursor" },
}, },
window = { window = {
completion = cmp.config.window.bordered(), completion = cmp.config.window.bordered({
documentation = cmp.config.window.bordered(), border = "rounded",
winhighlight = "Normal:CmpPmenu,FloatBorder:CmpBorder,CursorLine:CmpSel,Search:None",
}),
documentation = cmp.config.window.bordered({
border = "rounded",
winhighlight = "Normal:CmpDoc,FloatBorder:CmpBorderDoc,CursorLine:CmpSel,Search:None",
}),
}, },
-- experimental settings -- experimental settings