nvim/lua/plugins/blink.lua
2025-05-25 15:09:40 -06:00

23 lines
550 B
Lua

return {
{
"saghen/blink.cmp",
dependencies = {
"L3MON4D3/LuaSnip"
},
version = "1.*",
---@module "blink.cmp"
---@type blink.cmp.Config
opts = {
keymap = { preset = "super-tab" },
appearance = {
nerd_font_variant = "mono"
},
completion = { documentation = { auto_show = false } },
sources = {
default = { "lsp", "path", "snippets", "buffer" },
},
fuzzy = { implementation = "prefer_rust_with_warning" }
},
opts_extend = { "sources.default" }
}
}