feat(lsp): migrate from blink.cmp to built-in completion

This commit is contained in:
2026-04-14 22:27:47 +02:00
parent 335680ea8a
commit 3f9170e46d
10 changed files with 225 additions and 130 deletions
+4 -4
View File
@@ -26,14 +26,14 @@ vim.opt.foldlevel = 99
vim.opt.foldlevelstart = 99
vim.opt.foldmethod = "indent"
vim.opt.foldignore = ""
---@diagnostic disable-next-line: undefined-field
vim.opt.completeopt:append({
vim.opt.completeopt = {
"menu",
"menuone",
"preview",
"popup",
"noinsert",
"noselect",
})
}
vim.opt.complete = { "o" }
-- set nowrap
vim.opt.matchpairs:append({ "<:>" })
-- Only relevant with wrap enabled (default)