From bf3225a165ba74a782fa17941c6b3b26e9e3320e Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Wed, 30 Jul 2025 23:54:15 +0500 Subject: [PATCH] zsh vim-like keybindings for navigating history --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 6abd50f..86a4e5c 100644 --- a/.zshrc +++ b/.zshrc @@ -15,6 +15,9 @@ setopt appendhistory bindkey '^R' history-incremental-search-backward bindkey '^I^I' autosuggest-accept +bindkey '^k' up-line-or-history +bindkey '^j' down-line-or-history + alias v="nvim" alias ta='tmux at || tmux' alias ls="ls --color"