diff options
-rw-r--r-- | conf.d/60-prompt.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.d/60-prompt.zsh b/conf.d/60-prompt.zsh index 0c19904..cbf00dd 100644 --- a/conf.d/60-prompt.zsh +++ b/conf.d/60-prompt.zsh @@ -151,7 +151,7 @@ RPROMPT='$(right_prompt)' bindkey "${terminfo[khome]}" beginning-of-line bindkey "${terminfo[kend]}" end-of-line -bindkey '\eOA' history-substring-search-up # or ^[OA -bindkey '\eOB' history-substring-search-down # or ^[OB +bindkey '^[[A' history-substring-search-up # or ^[OA +bindkey '^[[B' history-substring-search-down # or ^[OB export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE=fg=cyan |