chore: update configs

This commit is contained in:
Stevan Freeborn
2025-01-25 16:44:54 -06:00
parent 2668fba97e
commit 7727a6f3d4
6 changed files with 210 additions and 52 deletions
+6
View File
@@ -18,6 +18,12 @@ vim.keymap.set("v", "<leader>y", '"+y', { desc = "Yank to system clipboard" })
vim.keymap.set("n", "<leader>ww", ":set wrap!<CR>", { desc = "Toggle word wrap" })
vim.filetype.add({
extension = {
props = "xml",
}
})
-- if i am in insert mode and i spam one of these keys
-- i probably want to escape insert mode
vim.keymap.set("i", "jj", "<Esc>", { desc = "Escape" })