X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/66e0c46c40148f44edc4a1ddfd1c63b4e577ab3f..031352278be1cb6c716d65d73cb2dd373628c34d:/.zsh/zprofile/00_path diff --git a/.zsh/zprofile/00_path b/.zsh/zprofile/00_path deleted file mode 100644 index bac01d4..0000000 --- a/.zsh/zprofile/00_path +++ /dev/null @@ -1,25 +0,0 @@ -# zprofile/00_path -# -# Adds custom directories to the $PATH -# -# Copyright © 1994–2008 martin f. krafft -# 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