diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-21 19:22:55 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-21 19:23:45 -0400 |
| commit | f4552b2c18d7bdc92c2d1aa5606df5fdd74a01a6 (patch) | |
| tree | 9d621f94e89b3caeb1cf5fbb93eeaa650884d7cc /pkgs/custom-neovim/config/lua/keymaps.lua | |
| parent | ef7c5fdf4e957a78d5b6994abc0fc59ac389304d (diff) | |
neovim: working on statusline
Diffstat (limited to 'pkgs/custom-neovim/config/lua/keymaps.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/keymaps.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/custom-neovim/config/lua/keymaps.lua b/pkgs/custom-neovim/config/lua/keymaps.lua index 95d120d..1057181 100644 --- a/pkgs/custom-neovim/config/lua/keymaps.lua +++ b/pkgs/custom-neovim/config/lua/keymaps.lua @@ -33,7 +33,10 @@ mapkey("n", "<leader>t", "Open terminal", ":botright terminal<cr>") mapkey({"n", "v"}, "<leader>d", "Really delete", [["_d]]) mapkey({"n", "v"}, "<leader>x", "Really delete character", [["_x]]) --- Visual Movement Keys. +-- Paste on newline +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") |
