dotfiles/zshrc

26 lines
404 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 15:10:18 -04:00
export PATH=$HOME/.bin:$PATH EDITOR=emacs PAGER=most
2020-05-03 13:24:28 -04:00
# Load additions
case $OSTYPE in
darwin*)
2020-08-08 15:10:18 -04:00
. ~/dotfiles/zshrc_mac
2020-05-03 13:24:28 -04:00
;;
freebsd*)
2020-08-08 15:10:18 -04:00
. ~/dotfiles/zshrc_bsd
2020-05-03 13:24:28 -04:00
;;
linux-gnu)
2020-08-08 15:10:18 -04:00
. ~/dotfiles/zshrc_linux
2020-05-03 13:24:28 -04:00
;;
esac