refactor(nvim): reorder priorities of cmp completions
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 38s

This commit is contained in:
Price Hiller 2024-09-30 13:38:09 -05:00
parent 6a1be6f48b
commit 45c45e7648
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -139,6 +139,14 @@ return {
{ name = "lazydev", group_index = 0 },
{ name = "nvim_lsp" },
{ name = "luasnip", max_item_count = 5 }, -- For luasnip users.
{ name = "calc" },
{ name = "emoji", keyword_length = 2, max_item_count = 10 },
{
name = "lua-latex-symbols",
option = { cache = true },
max_item_count = 5,
trigger_characters = { "\\" },
},
{
name = "fuzzy_buffer",
max_item_count = 5,
@ -153,15 +161,7 @@ return {
"--max-depth 4",
},
},
{
name = "lua-latex-symbols",
option = { cache = true },
max_item_count = 5,
trigger_characters = { "\\" },
},
{ name = "zsh", max_item_count = 5 },
{ name = "emoji", keyword_length = 2, max_item_count = 10 },
{ name = "calc" },
{ name = "npm", keyword_length = 2 },
}