X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/89d937abcfe39193c9fc5409a379323392609eb7..0ef64d0d5d3cf46836b1e92b2877f98869a0aa3e:/.profile diff --git a/.profile b/.profile index 8df286c..6bcab82 100644 --- a/.profile +++ b/.profile @@ -10,7 +10,6 @@ fi export EDITOR="emacsclient -nw" export VISUAL="emcl" -PATH="$HOME/usr/local/bin:$HOME/.local/bin:$PATH" PATH="$HOME/.cabal/bin:$HOME/.cargo/bin:$HOME/.elan/bin:$PATH" if [ -z "$IS_GUIX_SYSTEM" ]; then PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH" @@ -38,7 +37,10 @@ export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc export MAILDIR="$HOME/mail" export CVS_RSH="ssh" -export GOPATH="$HOME/src/go" +if [ -x "$(command -v go)" ]; then + export GOPATH="$HOME/src/go" + export PATH="$GOPATH/bin:$PATH" +fi # if running bash if [ -n "$BASH_VERSION" ]; then @@ -73,6 +75,8 @@ for p in $MY_GUIX_PROFILES/*; do unset profile done +export PATH="$HOME/usr/local/bin:$HOME/.local/bin:$PATH" + # start an ssh-agent (with guix's openssh) if [ -z "$IS_GUIX_SYSTEM" ]; then if ! pgrep -u "$USER" ssh-agent > /dev/null; then @@ -90,3 +94,5 @@ fi # see https://docs.xfce.org/xfce/xfce4-session/advanced#ssh_and_gpg_agents # also, MATE does something similar with gnome-keyring-daemon: # http://william.shallum.net/random-notes/disabling-gnome-keyring-daemon-ssh-agent-on-mate-desktop + +export PATH="$HOME/.cargo/bin:$PATH"