X-Git-Url: http://git.vanrenterghem.biz/Dotty.git/blobdiff_plain/b125e1d87b99bfed04f02e95d37935231a82e69c..6414ad5dd394ca000714a297dea55696c7116bbe:/bash/.bashrc?ds=sidebyside diff --git a/bash/.bashrc b/bash/.bashrc index 9fa83b5..5a379c7 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -22,3 +22,31 @@ export GPG_TTY=$(tty) gpg-connect-agent updatestartuptty /bye >/dev/null [ -n "$DISPLAY" ] && export BROWSER=firefox || export BROWSER=w3m + +source /etc/profile.d/nix-daemon.sh +export LOCALE_ARCHIVE=/usr/lib/locale/locale-archive + +# Initialise pyenv +export PYENV_ROOT="$HOME/.pyenv" +[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" +eval "$(pyenv init -)" + +# Append "$1" to $PATH when not already in. +append_path () { + case ":$PATH:" in + *:"$1":*) + ;; + *) + PATH="${PATH:+$PATH:}$1" + esac +} + +# Append our default paths +append_path '/home/frederik/scripts' + +# Emacs eat shell integration +[ -n "$EAT_SHELL_INTEGRATION_DIR" ] && \ + source "$EAT_SHELL_INTEGRATION_DIR/bash" + + +