update hyprland

This commit is contained in:
Alexander Navarro 2025-09-05 09:46:51 -04:00
parent 7e24245690
commit 85c150a1ac
5 changed files with 15 additions and 1 deletions

View file

@ -33,6 +33,7 @@ vim.keymap.set("n", "<C-l>", "<C-w>l", { desc = "Move to right window", silent =
-- LSP
vim.keymap.set("n", "<leader>lr", function() vim.lsp.buf.rename() end, { desc = "Rename symbol", silent = true })
vim.keymap.set("n", "<leader>lf", vim.lsp.buf.format, { desc = "Format document with LSP", silent = true })
vim.keymap.set("n", "<leader>lj", function() vim.diagnostic.jump({ count = 1 }) end,
{ desc = "Go to next diagnostic", silent = true })