From 2c486ca4c4b7248f9868a322c06b61452be33999 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Wed, 4 Dec 2024 20:24:12 -0500 Subject: [PATCH] style: change some text --- .config/nvim/lua/plugins/autocomplete.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.config/nvim/lua/plugins/autocomplete.lua b/.config/nvim/lua/plugins/autocomplete.lua index 7802962..2f3ae20 100644 --- a/.config/nvim/lua/plugins/autocomplete.lua +++ b/.config/nvim/lua/plugins/autocomplete.lua @@ -105,12 +105,12 @@ return { end, { 'i', 's' }), }), sources = cmp.config.sources({ - { name = 'nvim_lsp', priority = 1 }, + { name = 'nvim_lsp' }, { name = 'luasnip' }, { name = 'nvim_lsp_signature_help' }, { name = 'nvim_lua' }, { name = 'nerdfont' }, - { name = 'buffer', keyword_length = 3 }, + { name = 'buffer', keyword_length = 5 }, { name = 'path' }, { name = 'calc' }, }), @@ -142,6 +142,8 @@ return { path = '[Path]', latex_symbols = '[Latex]', spell = '[Spell]', + nerdfont = '[NF]', + calc = '[Calc]', }, })(entry, vim_item) end, @@ -203,4 +205,4 @@ return { }, }) end, -} \ No newline at end of file +}