enabled blink-cmp documentation

This commit is contained in:
Jáchym 2025-03-04 17:33:07 +01:00
parent 1caf48f1d6
commit 949b09162f
2 changed files with 10 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
lazy-lock.json

View File

@ -6,15 +6,22 @@ return {
---@module 'blink.cmp'
---@type blink.cmp.Config
opts = {
keymap = { preset = "enter" },
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" },
},
fuzzy = { implementation = "prefer_rust_with_warning" },
},
opts_extend = { "sources.default" },
}