This commit is contained in:
root 2026-05-02 10:03:39 -03:00
parent 73ff9ee8ee
commit 664eb70e8c
No known key found for this signature in database
14 changed files with 698 additions and 495 deletions

View file

@ -42,6 +42,7 @@ local servers = {
zls = {
enable_build_on_save = true,
semantic_tokens = "partial",
global_cache_path = vim.fn.getcwd(0, 0) .. "/.cache/zls",
},
},
},
@ -52,7 +53,11 @@ local servers = {
html = { filetypes = { "html", "blade" } },
htmx = { filetypes = { "html", "blade" } },
gopls = {},
ols = {},
ols = {
enable_semantic_tokens = true,
enable_auto_import = true,
checker_args = "-vet",
},
wgsl_analyzer = {},
}
for server, config in pairs(servers) do
@ -77,12 +82,12 @@ local leap = require("leap")
leap.opts.preview = function(ch0, ch1, ch2)
return not (ch1:match("%s") or (ch0:match("%a") and ch1:match("%a") and ch2:match("%a")))
end
leap.opts.equivalence_classes = {
" \t\r\n",
"([{",
")]}",
"'\"`",
}
-- leap.opts.equivalence_classes = {
-- " \t\r\n",
-- "([{",
-- ")]}",
-- "'\"`",
-- }
vim.api.nvim_set_hl(0, "LeapBackdrop", { link = "Comment" })
do