summary refs log tree commit diff
path: root/profile
blob: 7dd7b83492105488cb0e6664075713286e666d2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# ~/.profile

if [ -n "$BASH_VERSION" ]; then
    if [ -f "$HOME/.bashrc" ]; then
	. "$HOME/.bashrc"
    fi
fi

export PATH=$HOME/.local/bin:$PATH
source "$HOME/.cargo/env"
source "$HOME/.ghcup/env"
export PATH=$HOME/.cabal/bin/:$HOME/go/bin:$PATH
# opam configuration
#test -r /home/pawel/.opam/opam-init/init.sh && . /home/pawel/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true
#eval "$(opam env)"
#eval "$(stack --bash-completion-script stack)"