nvim/lua/plugins/blink-cmp.lua
2025-03-04 15:23:46 +01:00

21 lines
477 B
Lua

return {
"saghen/blink.cmp",
dependencies = "rafamadriz/friendly-snippets",
version = "*",
event = "InsertEnter",
---@module 'blink.cmp'
---@type blink.cmp.Config
opts = {
keymap = { preset = "enter" },
appearance = {
use_nvim_cmp_as_default = false,
nerd_font_variant = "mono",
},
sources = {
default = { "lsp", "path", "snippets", "buffer" },
},
fuzzy = { implementation = "prefer_rust_with_warning" },
},
opts_extend = { "sources.default" },
}