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

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

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

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