From 22083965992c173114d31e7b0eddc9ed15e2a595 Mon Sep 17 00:00:00 2001 From: Matus Namesny Date: Thu, 13 Jan 2022 13:41:50 +0100 Subject: [PATCH] Move bindkeys up --- .zshrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.zshrc b/.zshrc index 645a3e9..a31917e 100644 --- a/.zshrc +++ b/.zshrc @@ -13,6 +13,10 @@ export HISTFILE=$HOME/.zsh_history export HISTSIZE=15000 # keep 15,000 lines in memory export SAVEHIST=10000 # but save only 10,000 of them +# Bindkeys +bindkey '^[[A' history-substring-search-up +bindkey '^[[B' history-substring-search-down + # VTE if [ $TILIX_ID ] || [ $VTE_VERSION ]; then source /etc/profile.d/vte.sh @@ -75,9 +79,5 @@ source ~/.zsh/zsh-completions/zsh-completions.plugin.zsh source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ~/.zsh/zsh-history-substring-search/zsh-history-substring-search.zsh -# Bindkeys -bindkey '^[[A' history-substring-search-up -bindkey '^[[B' history-substring-search-down - # Set Prompt setopt promptsubst