zshrc: fix some bindkey/setopt nonsense

master
an 2019-05-15 01:11:29 -04:00
parent d6da916376
commit b12c1cae73
1 changed files with 5 additions and 3 deletions

8
zshrc
View File

@ -2,14 +2,16 @@ HISTFILE=~/.zsh/hist
HISTSIZE=100000
SAVEHIST=10000
setopt appendhistory extendedglob nomatch
setopt appendhistory extendedglob nomatch prompt_subst correct
unsetopt autocd beep
bindkey -e
bindkey "^[[H" beginning-of-line
bindkey "^[[F" end-of-line
bindkey "${terminfo[khome]}" beginning-of-line
bindkey "${terminfo[kend]}" end-of-line
zstyle :compinstall filename '/home/marrub/.zshrc'
zstyle ':completion:*' format '[Completing %d]'
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
autoload -Uz compinit
compinit