diff --git a/home-manager/common/software/cli/nixvim-base.nix b/home-manager/common/software/cli/nixvim-base.nix index 6b3b22ae..7137c596 100644 --- a/home-manager/common/software/cli/nixvim-base.nix +++ b/home-manager/common/software/cli/nixvim-base.nix @@ -59,15 +59,14 @@ (nmap "wl" ":wincmd l" // desc "Move right") (nmap "wj" ":wincmd j" // desc "Move down") (nmap "wk" ":wincmd k" // desc "Move up") - (nmap "wp" ":wincmd p" // desc "Move to [p]revious") - (nmap "wn" ":wincmd n" // desc "Move to [n]ext") + (nmap "wn" ":wincmd w" // desc "Move to next") + (nmap "wN" ":wincmd p" // desc "Move to previous") (nmap "wc" ":wincmd c" // desc "[C]lose active window") - (nmap "ww" ":wincmd w" // desc "Switch [w]indows") - (nmap "wNh" ":wincmd n" // desc "New [H]orizontal window") - (nmap "wNv" ":wincmd v" // desc "New [V]ertical window") + (nmap "woh" ":wincmd n" // desc "Open [H]orizontal window") + (nmap "wov" ":wincmd v" // desc "Open [V]ertical window") # Buffer Management (nmap "bn" ":bnext" // desc "Next buffer") - (nmap "bp" ":bNext" // desc "Previous buffer") + (nmap "bN" ":bNext" // desc "Previous buffer") (nmap "bc" ":bdelete" // desc "[c]lose buffer") ];