mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 11:24:07 +00:00
13 lines
300 B
Lua
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,
|
|
}
|