-- Keymaps are automatically loaded on the VeryLazy event -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua -- Add any additional keymaps here local map = vim.keymap.set -- Windows map("n", "ww", "p", { desc = "Other Window", remap = true }) map("n", "wd", "c", { desc = "Delete Window", remap = true }) map("n", "ws", "s", { desc = "Split Window Below", remap = true }) map("n", "wv", "v", { desc = "Split Window Right", remap = true }) map("n", "wj", "j", { desc = "Go to Lower Window", remap = true }) map("n", "wk", "k", { desc = "Go to Upper Window", remap = true }) map("n", "wl", "l", { desc = "Go to Right Window", remap = true }) map("n", "wh", "h", { desc = "Go to Left Window", remap = true }) -- File map("n", "fs", "w", { desc = "Save File" })