From 6324ee1804d03e5607fbcbd54dc20d3fcb18a6aa Mon Sep 17 00:00:00 2001 From: Brahmajit Das Date: Tue, 13 Jan 2026 21:05:19 +0530 Subject: lua: plugins: completions: reorder completion sources for better completion Signed-off-by: Brahmajit Das --- lua/plugins/completion.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/plugins/completion.lua b/lua/plugins/completion.lua index 1f41bc4..3a29c97 100644 --- a/lua/plugins/completion.lua +++ b/lua/plugins/completion.lua @@ -77,6 +77,8 @@ return { }), sources = cmp.config.sources({ { name = 'nvim_lsp' }, + { name = 'vimtex' }, + { name = 'nvim_lsp_signature_help' }, { name = 'luasnip', option = @@ -85,11 +87,9 @@ return { show_autosnippets = true, } }, - { name = 'nvim_lsp_signature_help' }, - { name = 'path' }, { name = 'buffer' }, + { name = 'path' }, { name = 'nvim_lua' }, - { name = 'vimtex' }, }), } -- cgit v1.2.3