]> git.vanrenterghem.biz Git - Dotty.git/blobdiff - bash/.bashrc
Keep a history of commands etc.
[Dotty.git] / bash / .bashrc
index b0e4bab4ffdc16b52b825878779e207c28de8ca6..5a379c71aab3b09f6a2c2469539f6b2f8ac0a361 100644 (file)
@@ -25,3 +25,28 @@ gpg-connect-agent updatestartuptty /bye >/dev/null
 
 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"
+
+
+