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
+3
View File
@@ -147,6 +147,9 @@ return {
local map = vim.keymap.set
map("n", "<leader>uw", function() vim.opt.wrap = not vim.wo.wrap end, { desc = "Toggle wrap" })
map("n", "<leader>uf", "zA", { desc = "Toggle all folds" })
map("n", "<leader>uc", function()
vim.opt_local.conceallevel = vim.o.conceallevel == 0 and 2 or 0
end, { desc = "Toggle conceal" })
end,
},