feat(ui): Add more LSP improvements, install fancy UI plugins

This commit is contained in:
Калистратов Максим
2026-06-03 21:58:43 +03:00
parent 81e111c01e
commit ba05846b9f
13 changed files with 88 additions and 18 deletions

View File

@@ -6,7 +6,17 @@ cmp.build():pwait()
---@type blink.cmp.Config
local cmp_options = {
keymap = { preset = "default" },
completion = { menu = { auto_show = true }, documentation = { auto_show = true } },
completion = {
menu = { auto_show = true },
documentation = { auto_show = true },
ghost_text = { enabled = true },
list = {
selection = {
auto_insert = false,
preselect = true,
},
},
},
sources = { default = { "lsp", "path", "snippets", "buffer" } },
fuzzy = { implementation = "rust" },
}