Nvim: switch from nvim-cmp to epo

This commit is contained in:
Robert Kmieć
2024-05-23 00:13:18 +02:00
parent 6cfad76308
commit 063a693f19
4 changed files with 24 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
return {
'nvimdev/epo.nvim',
config = function()
-- the default completetopt set by epo
vim.opt.completeopt = "menu,menuone,noselect,popup"
-- use default settings
require('epo').setup({
fuzzy = true,
signature_border = 'rounded',
})
end
}