Prompt work...mostly, notes

Hack together a prompt that does most of what we did before but is a bit
simpler.  Throw it all into precmd because why not....
This commit is contained in:
Andrew Tomaka 2015-12-10 16:17:09 -05:00
parent db3bfa4036
commit f2676dabcf
7 changed files with 53 additions and 41 deletions

9
zshenv Normal file
View file

@ -0,0 +1,9 @@
PERSONAL_BIN_PATH="$HOME/bin"
RBENV_PATH="$HOME/.rbenv/bin"
GNU_TOOLS_PATH="/usr/local/opt/coreutils/libexec/gnubin"
GNU_TOOLS_MAN_PATH="/usr/local/opt/coreutils/libexec/gnuman"
[[ -d "$PERSONAL_BIN_PATH" ]] && PATH="$PERSONAL_BIN_PATH:$PATH"
[[ -d "$RBENV_PATH" ]] && PATH="$RBENV_PATH:$PATH"
[[ -d "$GNU_TOOLS_PATH" ]] && PATH="$GNU_TOOLS_PATH:$PATH"
[[ -d "$GNU_TOOLS_MAN_PATH" ]] && MANPATH="$GNU_TOOLS_MAN_PATH:$MANPATH"