diff options
author | Matt Singleton <matt@xcolour.net> | 2021-02-09 17:29:48 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2021-02-09 17:29:48 -0600 |
commit | 472ba71fd7e646ea82a332e0ecbe6a836512f28d (patch) | |
tree | bbaab03081b23a0313c4016464d863ebc1f2d6d5 /local | |
parent | 75674f2c7479a5c2ba131e9513bdb0ec2c61ae7b (diff) |
better file organization
Diffstat (limited to 'local')
-rw-r--r-- | local/gitconfig-local | 1 | ||||
-rw-r--r-- | local/local.zsh | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/local/gitconfig-local b/local/gitconfig-local new file mode 100644 index 0000000..8076467 --- /dev/null +++ b/local/gitconfig-local @@ -0,0 +1 @@ +# Local (not source-controlled) overrides go here diff --git a/local/local.zsh b/local/local.zsh new file mode 100644 index 0000000..8b012e4 --- /dev/null +++ b/local/local.zsh @@ -0,0 +1,23 @@ +# get sbin on the path +#export PATH="/usr/sbin:/sbin:$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" + +# 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` +#trap 'eval `ssh-agent -k`' 0 + +# prompt hostname is highlighted in red for non-local envs +#export ZSH_LOCAL_ENV=true |