dotfiles/zshrc

26 lines
508 B
Bash
Raw Normal View History

2020-05-03 13:24:28 -04:00
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -e
zstyle :compinstall filename "$HOME/.zshrc"
autoload -Uz compinit
compinit
autoload -Uz promptinit
promptinit
prompt clint
2020-08-08 18:10:04 -04:00
. ~/dotfiles/aliases
2020-05-03 13:24:28 -04:00
# Load additions
case $OSTYPE in
darwin*)
[ -f ~/dotfiles/zshrc_mac ] && . ~/dotfiles/zshrc_mac
2020-05-03 13:24:28 -04:00
;;
freebsd*)
[ -f ~/dotfiles/zshrc_bsd ] && . ~/dotfiles/zshrc_bsd
2020-05-03 13:24:28 -04:00
;;
linux-gnu)
2020-08-08 18:18:39 -04:00
[ -f ~/dotfiles/zshrc_linux ] && . ~/dotfiles/zshrc_linux
2020-05-03 13:24:28 -04:00
;;
esac
2020-08-09 17:44:43 -04:00
[ -f ~/.zshrc_local ] && . ~/.zshrc.local