summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorchristianchiarulli <chrisatmachine@gmail.com>2021-12-19 13:16:43 -0500
committerchristianchiarulli <chrisatmachine@gmail.com>2021-12-19 13:16:43 -0500
commite1ac27496fccd2e0accb79c6ac2097865feff14b (patch)
tree6532745df6a964f605640eb064a9dbb6f79c1979 /lua
parent4f2899202ef524a0264959feb6e4775b6e82b596 (diff)
update resize
Diffstat (limited to 'lua')
-rw-r--r--lua/user/keymaps.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua
index b4823fe..b3eb0d8 100644
--- a/lua/user/keymaps.lua
+++ b/lua/user/keymaps.lua
@@ -28,8 +28,8 @@ keymap("n", "<C-l>", "<C-w>l", opts)
keymap("n", "<leader>e", ":Lex 30<cr>", opts)
-- Resize with arrows
-keymap("n", "<C-Up>", ":resize -2<CR>", opts)
-keymap("n", "<C-Down>", ":resize +2<CR>", opts)
+keymap("n", "<C-Up>", ":resize +2<CR>", opts)
+keymap("n", "<C-Down>", ":resize -2<CR>", opts)
keymap("n", "<C-Left>", ":vertical resize -2<CR>", opts)
keymap("n", "<C-Right>", ":vertical resize +2<CR>", opts)