This commit is contained in:
Ben Kyd
2023-03-23 20:13:16 +00:00
parent c1275506ed
commit b9d7db54a8
3 changed files with 14 additions and 1 deletions

View File

@@ -49,6 +49,15 @@ lsp.setup_nvim_cmp({
mapping = cmp_mappings,
})
local cmp_config = lsp.defaults.cmp_config({
window = {
completion = cmp.config.window.bordered(),
documentation = cmp.config.window.bordered()
},
})
cmp.setup(cmp_config)
cmp.setup.cmdline('/', {
sources = {
{ name = 'buffer' }