Zsh keybindings
This commit is contained in:
parent
d00794487f
commit
e7a8e4fd61
1 changed files with 13 additions and 0 deletions
|
@ -75,9 +75,22 @@ then
|
|||
bind 'set completion-ignore-case on'
|
||||
bind 'set enable-bracketed-paste off'
|
||||
PS1="\[\033[01m\]\u@\h\\$\[\033[00m\] "
|
||||
|
||||
elif [ -n "$ZSH_VERSION" ]
|
||||
then
|
||||
autoload -Uz compinit && compinit
|
||||
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
|
||||
bindkey -e
|
||||
|
||||
bindkey "^[[1;5C" forward-word
|
||||
bindkey "^[[1;5D" backward-word
|
||||
bindkey "^[[3~" delete-char
|
||||
bindkey "^[[A" history-beginning-search-backward
|
||||
bindkey "^[[B" history-beginning-search-forward
|
||||
bindkey "^[OA" history-beginning-search-backward
|
||||
bindkey "^[OB" history-beginning-search-forward
|
||||
PS1="%B%n@%m%#%b "
|
||||
|
||||
fi
|
||||
|
||||
_acp_add_path () {
|
||||
|
|
Loading…
Reference in a new issue