diff options
Diffstat (limited to 'profile')
-rw-r--r-- | profile | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,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)" + + |