1
0
mirror of https://github.com/drewcassidy/dotfiles synced 2024-06-11 05:44:06 +00:00
Dotfiles/.zshrc

29 lines
830 B
Bash
Raw Normal View History

2016-12-29 07:49:55 +00:00
export PATH="$PATH:$HOME/Library/Python/2.7/bin" # pip installation location
2017-03-03 06:51:47 +00:00
export PATH="$PATH:$HOME/.local/bin"
2016-12-29 07:49:55 +00:00
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
2017-03-03 06:51:47 +00:00
export PATH="$PATH:$HOME/Scripts"
export PKG_CONFIG_PATH="/Library/Frameworks/Mono.framework/Versions/4.6.2/lib/pkgconfig":$PKG_CONFIG_PATH
2016-12-29 07:49:55 +00:00
# setup completion
autoload -Uz compinit
compinit
2016-12-29 07:49:55 +00:00
# setup histfile
2016-12-29 07:49:55 +00:00
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt incappendhistory histexpiredupsfirst histignorespace extendedglob notify
unsetopt nomatch
bindkey -e
# colorize commands
alias ls='ls -G'
2016-12-29 07:49:55 +00:00
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
export CLICOLOR=1
export LSCOLORS='ExcxdxfxgxxexcxdxfBxBx'