aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2021-12-08 12:14:04 -0600
committerMatt Singleton <matt@xcolour.net>2021-12-08 12:14:04 -0600
commite87f61a539ab2ce814e032746aa6442ae237cb54 (patch)
treeda47e0685fd5461640de82fdbdf741c775b160e8
parentbd107c186ba3c55876259887eb976f71b5173ee4 (diff)
clean up example local zsh config
-rw-r--r--local/local.zsh25
1 files changed, 11 insertions, 14 deletions
diff --git a/local/local.zsh b/local/local.zsh
index 1b9bf6d..a479c35 100644
--- a/local/local.zsh
+++ b/local/local.zsh
@@ -1,25 +1,22 @@
export EDITOR=vim
export LANG=en_US.UTF-8
-# get sbin on the path
-#export PATH="/usr/sbin:/sbin:$PATH"
+# macports
+#export PATH=/opt/local/bin:/opt/local/sbin:$PATH
+#export MANPATH=/opt/local/share/man:$MANPATH
+#export DISPLAY=:0
+#export PATH="/opt/local/libexec/gnubin:$PATH"
+#fpath=(/opt/local/share/zsh/site-functions $fpath)
-# 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"
+# asdf and completions
+#. $HOME/.asdf/asdf.sh
+#fpath=(${ASDF_DIR}/completions $fpath)
# Java
#export JAVA_HOME="$(/usr/libexec/java_home -v 1.8)"
-# User bin
-#export PATH="$HOME/bin:$PATH"
+# local bin
+#export PATH=~/.local/bin:$PATH
# start the ssh agent on login and stop on logout
#eval `ssh-agent -s`