dotfiles/.config/nvim/lua/plugins/extras/coding/blink-extended.lua
Sergio Laín fd95d5fd4a
feat(nvim): new extras: blink and fzf-lua extended
nvim-cmp and telescope are now longer the default plugins for lazyvim
2025-01-07 23:56:28 +01:00

20 lines
460 B
Lua

return {
"saghen/blink.cmp",
opts = {
keymap = {
["<C-k>"] = { "select_prev", "fallback" },
["<C-j>"] = { "select_next", "fallback" },
},
completion = {
menu = {
border = "rounded",
winhighlight = "Normal:BlinkCmpDoc,FloatBorder:BlinkCmpDocBorder,CursorLine:BlinkCmpDocCursorLine,Search:None",
},
documentation = {
window = {
border = "rounded",
},
},
},
},
}