.zshrc:
Код: Выделить всё
bindkey "^[[A" history-beginning-search-backward
bindkey "^[[B" history-beginning-search-forward
HISTFILE=$HOME/.zsh_history
HISTSIZE=9999
SAVEHIST=9999
setopt inc_append_history
setopt hist_ignore_all_dups
setopt hist_ignore_space
setopt hist_reduce_blanks
zstyle ':completion:*' menu select
bindkey "^[OH" beginning-of-line
bindkey "^[OF" end-of-line
if [[ "${terminfo[kdch1]}" != "" ]]; then
bindkey "${terminfo[kdch1]}" delete-char # [Delete] - delete forward
else
bindkey "^[[3~" delete-char
bindkey "^[3;5~" delete-char
bindkey "\e[3~" delete-char
fi
bindkey ";5C" forward-word
bindkey ";5D" backward-word
bindkey ";3D" backward-delete-word