Files
astronvim_config/cmp/source_priority.lua
2023-02-13 15:55:27 +02:00

13 lines
300 B
Lua

-- CMP Source Priorities
-- modify here the priorities of default cmp sources
-- higher value == higher priority
-- The value can also be set to a boolean for disabling default sources:
-- false == disabled
-- true == 1000
return {
nvim_lsp = 1000,
luasnip = 750,
buffer = 500,
path = 250,
}