diff options
author | Matt Singleton <msingleton@aclu.org> | 2018-09-07 15:10:28 -0400 |
---|---|---|
committer | Matt Singleton <msingleton@aclu.org> | 2018-09-07 15:10:28 -0400 |
commit | 03442dac2918416118892fc34428d101b92d02e8 (patch) | |
tree | 5f1a617e0f0e0914621df67ab9cbde619d912588 | |
parent | 2359cb2209f670fa3e62008896d42fa1181fcf57 (diff) |
update examples in zshrc-local template
-rw-r--r-- | zshrc-local | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/zshrc-local b/zshrc-local index 6810e37..8b012e4 100644 --- a/zshrc-local +++ b/zshrc-local @@ -1,12 +1,19 @@ -# move homebrew stuff to the beginning of the search path -#export PATH=/usr/local/bin:$PATH -#export MANPATH=/usr/local/man:$MANPATH +# get sbin on the path +#export PATH="/usr/sbin:/sbin:$PATH" -# get tex binaries on the path -#export PATH=/usr/local/texlive/2009basic/bin/universal-darwin:$PATH +# move homebrew stuff to the beginning of the search path +#export PATH="/usr/local/bin:/usr/local/sbin:$PATH" +#export MANPATH="/usr/local/man:$MANPATH" +#export PATH="/usr/local/opt/python/libexec/bin:$PATH" +#export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH" +#export MANPATH="/usr/local/opt/coreutils/libexec/gnuman:$MANPATH" +#export PATH="/usr/local/opt/findutils/libexec/gnubin:$PATH" +#export MANPATH="/usr/local/opt/findutils/libexec/gnuman:$MANPATH" +#export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH" +#export MANPATH="/usr/local/opt/grep/libexec/gnuman:$MANPATH" -# get sbin on your path -#export PATH="/usr/local/sbin:/usr/sbin:/sbin:${PATH}" +# Java +#export JAVA_HOME="$(/usr/libexec/java_home -v 1.8)" # start the ssh agent on login and stop on logout #eval `ssh-agent -s` |