diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-21 21:45:20 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-21 21:45:20 -0400 |
| commit | 238a47e986fb9ef8073811b14202ae2a2cb7dfba (patch) | |
| tree | cdcaba8087f8e608eb71f878764d8febeb3252b7 /pkgs/custom-neovim/config/lua/keymaps.lua | |
| parent | 637d0dc2fce0021985579d43efc2461bf65cad8e (diff) | |
neovim: working on heirline
Diffstat (limited to 'pkgs/custom-neovim/config/lua/keymaps.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/keymaps.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/custom-neovim/config/lua/keymaps.lua b/pkgs/custom-neovim/config/lua/keymaps.lua index 1057181..08558af 100644 --- a/pkgs/custom-neovim/config/lua/keymaps.lua +++ b/pkgs/custom-neovim/config/lua/keymaps.lua @@ -39,6 +39,8 @@ mapkey("n", "<leader>p", "Paste on newline", ":pu<cr>") -- Visual Movement Keys mapkey({"n", "v"}, "j", "Go down visually", "gj") mapkey({"n", "v"}, "k", "Go up visually", "gk") +mapkey({"n", "v"}, "<down>", "Go down visually", "gj") +mapkey({"n", "v"}, "<up>", "Go up visually", "gk") -- QOL Keys mapkey("t", "<Esc><Esc>", "Exit terminal insert mode", "<C-\\><C-n>") |
