mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2025-12-22 20:21:57 +00:00
27 lines
700 B
Lua
27 lines
700 B
Lua
return {
|
|
{
|
|
"saghen/blink.cmp",
|
|
dependencies = {
|
|
"rafamadriz/friendly-snippets",
|
|
},
|
|
version = "1.*",
|
|
|
|
---@module "blink.cmp"
|
|
---@type blink.cmp.Config
|
|
opts = {
|
|
keymap = {
|
|
preset = "super-tab",
|
|
},
|
|
appearance = {
|
|
nerd_font_variant = "mono",
|
|
},
|
|
completion = { documentation = { auto_show = true } },
|
|
sources = {
|
|
default = { "lsp", "path", "snippets", "buffer" },
|
|
},
|
|
fuzzy = { implementation = "prefer_rust_with_warning" },
|
|
},
|
|
opts_extend = { "sources.default" },
|
|
},
|
|
}
|