23 lines
600 B
Lua
23 lines
600 B
Lua
|
return {
|
||
|
{
|
||
|
"saghen/blink.cmp",
|
||
|
dependencies = "rafamadriz/friendly-snippets",
|
||
|
|
||
|
version = "v0.*",
|
||
|
|
||
|
opts = {
|
||
|
keymap = { preset = "default" },
|
||
|
|
||
|
appearance = {
|
||
|
-- Sets the fallback highlight groups to nvim-cmp's highlight groups
|
||
|
-- Useful for when your theme doesn't support blink.cmp
|
||
|
-- will be removed in a future release
|
||
|
use_nvim_cmp_as_default = true,
|
||
|
nerd_font_variant = "mono",
|
||
|
},
|
||
|
|
||
|
signature = { enabled = true },
|
||
|
},
|
||
|
},
|
||
|
}
|