Files
dotfiles/.config/nvim/lua/plugins/blink.lua
T
2026-04-04 09:43:55 -04:00

22 lines
580 B
Lua

return {
"saghen/blink.cmp",
version = "^1",
event = "InsertEnter", -- Lazy's native equivalent of the manual InsertEnter augroup
config = function()
require("blink.cmp").setup({
keymap = { preset = "super-tab" },
appearance = {
nerd_font_variant = "mono",
use_nvim_cmp_as_default = true,
},
completion = {
documentation = { auto_show = false },
},
sources = {
default = { "lsp", "path", "snippets", "buffer" },
},
fuzzy = { implementation = "prefer_rust_with_warning" },
})
end,
}