23 lines
450 B
Lua
23 lines
450 B
Lua
return {
|
|
'saghen/blink.cmp',
|
|
dependencies = { 'rafamadriz/friendly-snippets' },
|
|
version = '1.*',
|
|
|
|
---@module 'blink.cmp'
|
|
---@type blink.cmp.Config
|
|
opts = {
|
|
keymap = { preset = 'default' },
|
|
completion = {
|
|
documentation = {
|
|
auto_show = false,
|
|
},
|
|
},
|
|
sources = {
|
|
default = { 'lsp', 'path', 'snippets', 'buffer' }
|
|
},
|
|
fuzzy = {
|
|
implementation = 'prefer_rust_with_warning',
|
|
},
|
|
},
|
|
}
|
|
|