scripts/zshrc

23 lines
559 B
Bash
Raw Normal View History

2019-04-27 06:33:34 -07:00
HISTFILE=~/.zsh/hist
HISTSIZE=100000
SAVEHIST=10000
setopt appendhistory extendedglob nomatch prompt_subst correct
2019-04-27 06:33:34 -07:00
unsetopt autocd beep
bindkey -e
bindkey "${terminfo[khome]}" beginning-of-line
bindkey "${terminfo[kend]}" end-of-line
2019-04-27 06:33:34 -07:00
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:|=*'
2019-04-27 06:33:34 -07:00
autoload -Uz compinit
compinit
2019-04-30 21:21:33 -07:00
alias rebuild=$HOME/src/scripts/rebuild.sh
2019-05-14 22:12:06 -07:00
alias ls='ls --color=auto'
2019-05-14 22:11:52 -07:00
PROMPT='%#'
RPROMPT='%2~'