summaryrefslogtreecommitdiff
path: root/dotfiles/.bash_profile
blob: 1297ee0f80fd799d4a85ac3f8c5ef898e34acacc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- shell-script -*-

# Honor per-interactive-shell startup file
if [ -f ~/.bashrc ]; then
    source ~/.bashrc
fi

if [ -f $HOME/.guix-profile/etc/profile ]
then
    source $HOME/.guix-profile/etc/profile
fi

export PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH"
export EDITOR=emacsclient