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
+18
View File
@@ -57,6 +57,7 @@ return {
html = { "prettier" },
css = { "prettier" },
markdown = { "prettier" },
tex = { "latexindent" },
["jinja.html"] = { "djlint" },
},
format_on_save = {
@@ -65,4 +66,21 @@ return {
},
},
},
-- Doc-stub generation: JSDoc, Javadoc, rustdoc
{
"danymat/neogen",
cmd = "Neogen",
keys = {
{ "<leader>lg", function() require("neogen").generate() end, desc = "Generate doc" },
},
opts = {
snippet_engine = "luasnip",
languages = {
java = { template = { annotation_convention = "javadoc" } },
typescript = { template = { annotation_convention = "tsdoc" } },
rust = { template = { annotation_convention = "rustdoc" } },
},
},
},
}