1
Fork 0

More shells, and beautiful wlogout theming

This commit is contained in:
Matei Adriel 2023-08-14 14:49:55 +03:00
parent 7b4a8b2fa4
commit 16752e40d5
No known key found for this signature in database
28 changed files with 434 additions and 119 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -34,12 +34,13 @@ function M.config()
local options = {
window = {
completion = {
documentation = cmp.config.window.bordered(),
completion = cmp.config.window.bordered({
winhighlight = "Normal:Pmenu,FloatBorder:Pmenu,Search:None",
col_offset = -3,
side_padding = 0,
completeopt = "menu,menuone,noinsert",
},
}),
},
formatting = {
fields = { "kind", "abbr", "menu" },
@ -116,6 +117,7 @@ function M.config()
{ name = "cmdline" },
}),
})
end
return M