]> git.friedersdorff.com Git - max/dotfiles.git/blob - bash/.bash_profile
Better emacs config, make it play nice with git
[max/dotfiles.git] / bash / .bash_profile
1 export EDITOR="emc"
2 export PAGER="/usr/bin/less -R"
3 export PATH="/home/max/.local/bin:${PATH}"
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 export TMPDIR="/home/max/.local/tmp"
17
18 gpg-agent --daemon --enable-ssh-support \
19   --write-env-file "${HOME}/.gpg-agent-info"