fix(nvim): ensure path completions exist in cmp

This commit is contained in:
Price Hiller 2023-05-13 07:14:50 -05:00
parent 75589c26be
commit fd18a613f9
No known key found for this signature in database
2 changed files with 7 additions and 5 deletions

View File

@ -129,8 +129,8 @@ cmp.setup({
end, { "i", "s" }),
},
sources = cmp.config.sources({
{ name = "nvim_lsp", priority = 11 },
{ name = "luasnip", priority = 10 }, -- For luasnip users.
{ name = "nvim_lsp", priority = 11 },
{ name = "luasnip", priority = 10 }, -- For luasnip users.
{ name = "fuzzy_buffer", priority = 9, keyword_length = 3, max_item_count = 10 },
{
name = "rg",
@ -138,11 +138,12 @@ cmp.setup({
keyword_length = 3,
max_item_count = 10,
},
{ name = "zsh", priority = 5 },
{ name = "async_path", priority = 6 },
{ name = "zsh", priority = 5 },
{ name = "emoji", keyword_length = 2 },
{ name = "neorg" },
{ name = "calc" },
{ name = "npm", keyword_length = 2 },
{ name = "npm", keyword_length = 2 },
{ name = "spell", keyword_length = 2 },
}),
sorting = {
@ -164,7 +165,7 @@ cmp.setup({
cmp.setup.filetype("gitcommit", {
sources = cmp.config.sources({
{ name = "conventionalcommits", priority = 20 },
{ name = "emoji", keyword_length = 2 },
{ name = "emoji", keyword_length = 2 },
}),
})

View File

@ -239,6 +239,7 @@ lazy.setup({
"lukas-reineke/cmp-rg",
"onsails/lspkind.nvim",
"f3fora/cmp-spell",
"FelipeLema/cmp-async-path",
-- Snippets
{
"L3MON4D3/LuaSnip",