]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zprofile/00_path
fix up rdir names
[zsh.git] / .zsh / zprofile / 00_path
1 # zprofile/00_path
2 #
3 # Adds custom directories to the $PATH
4 #
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: http://git.madduck.net/v/etc/zsh.git
9 #
10
11 for p in $HOME/bin $HOME/.bin; do
12   case "$PATH" in
13     "*:${p}:*"|"${p}:*"|"*:${p}") :;;
14     *) PATH="${p}:$PATH";;
15   esac
16 done
17
18 for p in /usr/lib/surfraw; do
19   case "$PATH" in
20     "*:${p}:*"|"${p}:*"|"*:${p}") :;;
21     *) PATH="${PATH}:$p";;
22   esac
23 done
24
25 # vim:ft=zsh