28 lines
525 B
Lua
28 lines
525 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",
|
|
},
|
|
completion = {
|
|
documentation = {
|
|
auto_show = true,
|
|
auto_show_delay_ms = 500,
|
|
},
|
|
},
|
|
sources = {
|
|
default = { "lsp", "path", "snippets", "buffer" },
|
|
},
|
|
},
|
|
opts_extend = { "sources.default" },
|
|
}
|