Skip to content

Commit

Permalink
Update widow split keybinds
Browse files Browse the repository at this point in the history
  • Loading branch information
RhydianJenkins committed Apr 24, 2024
1 parent 14385ed commit e2155a6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions nvim/lua/rhydian/keybinds.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ keymap("n", "<C-u>", "<C-u>zz", { desc = "Page up" })
keymap("n", "<C-d>", "<C-d>zz", { desc = "Page down" })

-- Window manipulation
keymap("n", "<leader>ws", "<C-W><C-s>", { desc = "[W]indow horizontal [s]plit" })
keymap("n", "<leader>wv", "<C-W><C-v>", { desc = "[W]indow [v]ertical split" })
keymap("n", "<leader>wq", "<C-W><C-q>", { desc = "[W]indow [q]uit" })
keymap("n", '<leader>"', "<C-W><C-s>", { desc = "[W]indow horizontal [s]plit" })
keymap("n", "<leader>%", "<C-W><C-v>", { desc = "[W]indow [v]ertical split" })
keymap("n", "<leader>wo", "<C-W><C-o>", { desc = "Close all other windows" })
keymap("n", "<leader>wr", "<C-W><C-r>", { desc = "[W]indow [r]otate" })

Expand Down

0 comments on commit e2155a6

Please sign in to comment.