nvim: change: lsp completion options now take priority over buffer options
This commit is contained in:
parent
fda67bc61f
commit
9ae710bb6e
1 changed files with 2 additions and 2 deletions
|
@ -138,9 +138,9 @@ M.cmp = function()
|
|||
},
|
||||
sources = {
|
||||
{ name = 'path' },
|
||||
{ name = 'nvim_lsp' },
|
||||
{ name = 'buffer' },
|
||||
{ name = 'calc' },
|
||||
{ name = 'nvim_lsp' },
|
||||
{ name = 'nvim_lua' },
|
||||
{ name = 'spell' },
|
||||
{ name = 'treesitter' },
|
||||
|
@ -153,9 +153,9 @@ M.cmp = function()
|
|||
-- set a name for each source
|
||||
vim_item.menu = ({
|
||||
path = "[Path]",
|
||||
nvim_lsp = "[LSP]",
|
||||
buffer = "[Buffer]",
|
||||
calc = "[Calc]",
|
||||
nvim_lsp = "[LSP]",
|
||||
nvim_lua = "[Lua]",
|
||||
spell = "[Spell]",
|
||||
treesitter = "[TS]",
|
||||
|
|
Loading…
Add table
Reference in a new issue