Various env var fixes, tweaks, and shell boot speed up

This commit is contained in:
2016-07-06 22:31:04 +01:00
parent d1ffb1dcf1
commit ccaf6bdf69
5 changed files with 38 additions and 13 deletions

View File

@@ -29,10 +29,6 @@ path_prepend "$HOME/bin"
# Add dotfiles' bin directory to PATH
path_prepend "$DOTBIN"
# Relative Paths - must be first in PATH
path_append "./node_modules/.bin" # Node.js
path_append "./vendor/bundle/bin" # Ruby Bundler
# Ensure TMPDIR is the same for local and remote ssh logins
if [[ $TMPDIR == "/var/folders/"* ]] || [[ $TMPDIR == "" ]]; then
export TMPDIR="/tmp/user-$USER"