dotfiles/zshrc

37 lines
926 B
Bash
Raw Normal View History

2015-09-15 17:12:05 +00:00
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
2015-12-23 04:36:16 +00:00
ZSH_THEME="fino-time"
2015-09-15 17:12:05 +00:00
plugins=(git)
source $ZSH/oh-my-zsh.sh
2016-02-19 02:55:51 +00:00
# User configuration Exports
export LC_ALL=C
export LANG=en_US.UTF-8
export NPM_PACKAGES="${HOME}/.npm-packages"
export NODE_PATH="$NPM_PACKAGES/lib/node_modules:$NODE_PATH"
export GOPATH=$HOME/go
export PHP_AUTOCONF="/usr/local/bin/autoconf"
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/Devel
export PATH="$HOME/bin:$HOME/.rvm.bin:$NPM_PACKAGES/bin:$GOPATH/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:$PATH"
# Sourcing aliases and functions
source ~/.bash_aliases
# Unset manpath so we can inherit from /etc/manpath via the `manpath`
# command
unset MANPATH # delete if you already modified MANPATH elsewhere in your config
MANPATH="$NPM_PACKAGES/share/man:$(manpath)"
function adg {
workon addgene
}
2015-09-15 17:12:05 +00:00
# Local changes
source $HOME/.zshrc.local