18 lines
415 B
Lua
18 lines
415 B
Lua
return {
|
|
"https://github.com/saghen/blink.cmp",
|
|
version = '1.*',
|
|
|
|
---@module 'blink.cmp'
|
|
---@type blink.cmp.Config
|
|
opts = {
|
|
keymap = { preset = 'default' },
|
|
appearance = {
|
|
nerd_font_variant = 'mono'
|
|
},
|
|
completion = { documentation = { auto_show = false } },
|
|
sources = {
|
|
default = { 'lsp', 'path', 'snippets', 'buffer' },
|
|
},
|
|
},
|
|
opts_extend = { "sources.default" }
|
|
}
|