scripts/zshrc

17 lines
315 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
unsetopt autocd beep
bindkey -e
bindkey "^[[H" beginning-of-line
bindkey "^[[F" end-of-line
zstyle :compinstall filename '/home/marrub/.zshrc'
autoload -Uz compinit
compinit
2019-04-30 21:21:33 -07:00
alias rebuild=$HOME/src/scripts/rebuild.sh