feat hypr keybind helper via quickshell; fix nvim plugins (not completly done yet)

This commit is contained in:
2026-05-13 02:09:43 +02:00
parent 8a6cb3b37f
commit eaaf857026
10 changed files with 570 additions and 105 deletions
+16
View File
@@ -60,3 +60,19 @@ opt.completeopt = { "menu", "menuone", "noselect" }
opt.mouse = "a"
opt.fileencoding = "utf-8"
opt.shortmess:append("c")
vim.diagnostic.config({
virtual_text = { prefix = "", source = "if_many" },
float = { border = "rounded", source = true },
signs = {
text = {
[vim.diagnostic.severity.ERROR] = " ",
[vim.diagnostic.severity.WARN] = " ",
[vim.diagnostic.severity.HINT] = " ",
[vim.diagnostic.severity.INFO] = " ",
},
},
underline = true,
update_in_insert = false,
severity_sort = true,
})