diff --git a/home-manager/common/software/cli/nixvim-base.nix b/home-manager/common/software/cli/nixvim-base.nix index 019a44d3..6b3b22ae 100644 --- a/home-manager/common/software/cli/nixvim-base.nix +++ b/home-manager/common/software/cli/nixvim-base.nix @@ -60,14 +60,15 @@ (nmap "wj" ":wincmd j" // desc "Move down") (nmap "wk" ":wincmd k" // desc "Move up") (nmap "wp" ":wincmd p" // desc "Move to [p]revious") - (nmap "wp" ":wincmd n" // desc "Move to [n]ext") + (nmap "wn" ":wincmd n" // desc "Move to [n]ext") (nmap "wc" ":wincmd c" // desc "[C]lose active window") (nmap "ww" ":wincmd w" // desc "Switch [w]indows") - (nmap "wnh" ":wincmd n" // desc "[N]ew [H]orizontal window") - (nmap "wnv" ":wincmd v" // desc "[N]ew [V]ertical window") + (nmap "wNh" ":wincmd n" // desc "New [H]orizontal window") + (nmap "wNv" ":wincmd v" // desc "New [V]ertical window") # Buffer Management - (nmap "bn" ":bnext" // desc "Next buffer") - (nmap "bp" ":bNext" // desc "Previous buffer") + (nmap "bn" ":bnext" // desc "Next buffer") + (nmap "bp" ":bNext" // desc "Previous buffer") + (nmap "bc" ":bdelete" // desc "[c]lose buffer") ]; options = {