From 87e3314543dd3f058688db27e6b69e774c8deaad Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 15 Feb 2024 13:48:08 +0900 Subject: [PATCH] test --- home-manager/common/software/cli/nixvim-base.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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") ];