blink fix

This commit is contained in:
Zacharias-Brohn
2026-01-17 00:00:01 +01:00
parent 0765563c63
commit b8a764fac9
3 changed files with 13 additions and 16 deletions
+4 -8
View File
@@ -51,9 +51,8 @@ local opts = {
if cmp.snippet_active() then
return cmp.snippet_forward()
end
return cmp.fallback()
end,
"fallback",
},
["<S-Tab>"] = {
function(cmp)
@@ -64,9 +63,8 @@ local opts = {
if cmp.snippet_active() then
return cmp.snippet_backward()
end
return cmp.fallback()
end,
"fallback",
},
["<CR>"] = { "accept", "fallback" },
["Up"] = {},
@@ -89,18 +87,16 @@ local opts = {
if cmp.is_visible() then
return cmp.select_next()
end
return cmp.fallback()
end,
"fallback",
},
["<S-Tab>"] = {
function(cmp)
if cmp.is_visible() then
return cmp.select_prev()
end
return cmp.fallback()
end,
"fallback",
},
["<CR>"] = { "accept", "fallback" },
["Up"] = {},
+1
View File
@@ -197,6 +197,7 @@ local servers = {
"sourcekit",
"qmlls",
"tailwindcss",
"systemd-lsp",
require("mason-lspconfig").get_installed_servers(),
}