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" }), end, { "i", "s" }),
}, },
sources = cmp.config.sources({ sources = cmp.config.sources({
{ name = "nvim_lsp", priority = 11 }, { name = "nvim_lsp", priority = 11 },
{ name = "luasnip", priority = 10 }, -- For luasnip users. { name = "luasnip", priority = 10 }, -- For luasnip users.
{ name = "fuzzy_buffer", priority = 9, keyword_length = 3, max_item_count = 10 }, { name = "fuzzy_buffer", priority = 9, keyword_length = 3, max_item_count = 10 },
{ {
name = "rg", name = "rg",
@ -138,11 +138,12 @@ cmp.setup({
keyword_length = 3, keyword_length = 3,
max_item_count = 10, max_item_count = 10,
}, },
{ name = "zsh", priority = 5 }, { name = "async_path", priority = 6 },
{ name = "zsh", priority = 5 },
{ name = "emoji", keyword_length = 2 }, { name = "emoji", keyword_length = 2 },
{ name = "neorg" }, { name = "neorg" },
{ name = "calc" }, { name = "calc" },
{ name = "npm", keyword_length = 2 }, { name = "npm", keyword_length = 2 },
{ name = "spell", keyword_length = 2 }, { name = "spell", keyword_length = 2 },
}), }),
sorting = { sorting = {
@ -164,7 +165,7 @@ cmp.setup({
cmp.setup.filetype("gitcommit", { cmp.setup.filetype("gitcommit", {
sources = cmp.config.sources({ sources = cmp.config.sources({
{ name = "conventionalcommits", priority = 20 }, { 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", "lukas-reineke/cmp-rg",
"onsails/lspkind.nvim", "onsails/lspkind.nvim",
"f3fora/cmp-spell", "f3fora/cmp-spell",
"FelipeLema/cmp-async-path",
-- Snippets -- Snippets
{ {
"L3MON4D3/LuaSnip", "L3MON4D3/LuaSnip",