]> git.friedersdorff.com Git - max/dotfiles.git/blob - bash/.bash_profile
Remove PAGER for environment variables
[max/dotfiles.git] / bash / .bash_profile
1 export EDITOR="emc"
2 export PATH="/home/max/.local/bin:${PATH}"
3 export TMPDIR="/home/max/.local/tmp"
4
5 if [ -n "$BASH_VERSION" ]; then
6   # include .bashrc if it exists
7   if [ -f "$HOME/.bashrc" ]; then
8     . "$HOME/.bashrc"
9   fi
10 fi
11
12 if [ -f /etc/bash_completion ]; then
13   . /etc/bash_completion
14 fi
15
16