]> git.friedersdorff.com Git - max/dotfiles.git/blob - bash_profile
Commit mutt config files.
[max/dotfiles.git] / bash_profile
1 export NPM_PACKAGES="$HOME/.npm-packages"
2 export EDITOR="/usr/bin/vim"
3 export PAGER="/usr/bin/less"
4 export PATH="/home/max/bin:$NPM_PACKAGES/bin:${PATH}"
5 export PATH="$PATH:/home/max/bin:$NPM_PACKAGES/bin:$HOME/.rvm/bin"
6 [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
7 unset MANPATH
8 MANPATH="$NPM_PACKAGES/share/man:$(manpath)"
9 NODE_PATH="$NPM_PACKAGES/lib/node_modules:$NODE_PATH"
10
11 if [ -n "$BASH_VERSION" ]; then
12     # include .bashrc if it exists
13     if [ -f "$HOME/.bashrc" ]; then
14         . "$HOME/.bashrc"
15     fi
16 fi
17