feat: add blink.cmp

This commit is contained in:
ZotyDev 2026-02-22 14:13:58 -03:00
parent 179e92ee04
commit 4350a2f681
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
3 changed files with 27 additions and 1 deletions

23
lua/plugins/blink.lua Normal file
View 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',
},
},
}