feat: add blink.cmp
This commit is contained in:
parent
179e92ee04
commit
4350a2f681
3 changed files with 27 additions and 1 deletions
23
lua/plugins/blink.lua
Normal file
23
lua/plugins/blink.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue