From 0634ba59a37f5474e3f051e2dc2c12484b1b3f94 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Sat, 15 Jun 2019 21:01:19 -0500 Subject: [PATCH] use native modes over plugin --- zshrc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/zshrc b/zshrc index 8e840cc..6a9f042 100644 --- a/zshrc +++ b/zshrc @@ -10,10 +10,9 @@ zplug "felixr/docker-zsh-completion" zplug "zsh-users/zsh-syntax-highlighting", defer:2 zplug "zsh-users/zsh-autosuggestions", defer:2 zplug "zsh-users/zsh-completions", defer:2 -zplug "zsh-users/zsh-history-substring-search", defer:2 -bindkey '^[[A' history-substring-search-up -bindkey '^[[B' history-substring-search-down +bindkey "$terminfo[kcuu1]" history-beginning-search-backward +bindkey "$terminfo[kcud1]" history-beginning-search-forward setopt prompt_subst # Make sure prompt is able to be generated properly. setopt auto_cd # Get that ~ in here.