]> git.friedersdorff.com Git - max/dotfiles.git/blob - bash_lite/.bash_profile
Better text reflowing with mutt
[max/dotfiles.git] / bash_lite / .bash_profile
1 export EDITOR="/usr/bin/vim"
2 export PAGER="/usr/bin/less"
3 export PATH="/home/max/.local/bin:${PATH}"
4 unset MANPATH
5
6 if [ -n "$BASH_VERSION" ]; then
7   # include .bashrc if it exists
8   if [ -f "$HOME/.bashrc" ]; then
9     . "$HOME/.bashrc"
10   fi
11 fi
12
13 if [ -f /etc/bash_completion ]; then
14   . /etc/bash_completion
15 fi