Neovim: Add path completion

This commit is contained in:
GHOSCHT 2024-01-07 15:32:21 +01:00
parent 2ecc6e684a
commit 954653ad31
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
2 changed files with 2 additions and 0 deletions

View file

@ -69,6 +69,7 @@ in {
type = "lua";
}
cmp-path
nvim-cmp
{
plugin = nvim-cmp;

View file

@ -42,5 +42,6 @@ cmp.setup({
sources = {
{ name = "nvim_lsp" },
{ name = "luasnip" },
{ name = "path" },
},
})