Add zstyle call to zshrc

This commit is contained in:
Michael Campagnaro 2015-11-17 00:10:09 -05:00
parent 02f56bcf08
commit eb713867b3

8
zshrc
View File

@ -8,7 +8,11 @@ autoload -U promptinit
promptinit
prompt grb
autoload -U compinit
if [[ $platform == 'Linux' ]]; then
zstyle :compinstall filename `$HOME/.zshrc`
fi
autoload -Uz compinit
compinit
# Never know when you're gonna need to popd!
@ -39,6 +43,8 @@ export GREP_OPTIONS="-nRi --color --exclude-dir=.git --exclude-dir=tmp --exclud
export HISTSIZE=20000
export HISTFILE="$HOME/.history"
export SAVEHIST=$HISTSIZE
setopt appendhistory autocd
bindkey -e
# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"