]> git.donarmstrong.com Git - zsh.git/blobdiff - .zsh/zprofile/00_path
set path and locale at login
[zsh.git] / .zsh / zprofile / 00_path
deleted file mode 120000 (symlink)
index 520b1241d60e5dbb0772bb80257073848e675369..0000000000000000000000000000000000000000
+++ /dev/null
@@ -1 +0,0 @@
-../zshrc/00_path
\ No newline at end of file
new file mode 100644 (file)
index 0000000000000000000000000000000000000000..bac01d48efab416c56b7cd4b4bdf8105ce608d54
--- /dev/null
@@ -0,0 +1,25 @@
+# zprofile/00_path
+#
+# Adds custom directories to the $PATH
+#
+# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: http://git.madduck.net/v/etc/zsh.git
+#
+
+for p in $HOME/bin $HOME/.bin; do
+  case "$PATH" in
+    "*:${p}:*"|"${p}:*"|"*:${p}") :;;
+    *) PATH="${p}:$PATH";;
+  esac
+done
+
+for p in /usr/lib/surfraw; do
+  case "$PATH" in
+    "*:${p}:*"|"${p}:*"|"*:${p}") :;;
+    *) PATH="${PATH}:$p";;
+  esac
+done
+
+# vim:ft=zsh