Files
snippets/nvim-config/lua/plugins/blink.cmp.lua
Nicole Dresselhaus f1f698b2c2 fix snippets
2025-11-11 15:00:06 +01:00

25 lines
656 B
Lua

return {
"saghen/blink.cmp",
event = "InsertEnter",
-- LuaSnip kommt aus lua/plugins/snippets.lua früh rein; hier reicht avante
dependencies = { "Kaiser-Yang/blink-cmp-avante" },
opts = {
signature = { enabled = true },
fuzzy = { implementation = "prefer_rust" },
snippets = { preset = "luasnip" },
sources = {
default = { "lsp", "path", "avante", "snippets", "buffer" },
providers = {
avante = {
module = "blink-cmp-avante",
name = "Avante",
opts = {
-- options for blink-cmp-avante
},
},
},
},
},
build = "nix run .#build-plugin",
}