refactor(nvim): optimize rg-cmp

This commit is contained in:
Price Hiller 2022-09-07 23:00:45 -05:00
parent ab7f4374a6
commit 5ae9d2d2f8

View File

@ -159,17 +159,18 @@ cmp.setup({
{ name = "nvim_lsp", priority = 10 }, { name = "nvim_lsp", priority = 10 },
{ name = "luasnip", priority = 9 }, -- For luasnip users. { name = "luasnip", priority = 9 }, -- For luasnip users.
{ name = "fuzzy_buffer", priority = 8 }, { name = "fuzzy_buffer", priority = 8 },
{ name = "rg", priority = 7 }, {
name = "rg",
priority = 7,
keyword_length = 3,
},
{ name = "path", priority = 6 }, { name = "path", priority = 6 },
{ name = "zsh", priority = 5 }, { 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 = "dictionary", keyword_length = 2 },
name = "dictionary",
keyword_length = 2,
},
}), }),
sorting = { sorting = {
comparators = { comparators = {