Files
neovim-config/lua/plugins/blink.lua

29 lines
607 B
Lua

return {
"saghen/blink.cmp",
dependencies = {
-- For auto-completion in the avante window
"Kaiser-Yang/blink-cmp-avante",
},
opts = {
completion = {
trigger = {
show_in_snippet = false,
},
},
keymap = { preset = "super-tab" },
sources = {
-- Add 'avante' to the list
default = { "avante", "lsp", "path", "snippets", "buffer" },
providers = {
avante = {
module = "blink-cmp-avante",
name = "Avante",
opts = {
-- options for blink-cmp-avante
},
},
},
},
},
}