X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/e7aef48f33e934106d1a50201d9f098f9886d7ec..33230b65afa1076218abff057d0bbcc7486af0a8:/.zsh/zshenv/01_path diff --git a/.zsh/zshenv/01_path b/.zsh/zshenv/01_path deleted file mode 100644 index e4e81fa..0000000 --- a/.zsh/zshenv/01_path +++ /dev/null @@ -1,36 +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: git://git.madduck.net/etc/zsh.git -# - -__prepend_dir_to_path() -{ - local dir - for dir; do - case "$PATH" in - "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;; - *) test -d "$dir" && path=("$dir" $path);; - esac - done -} - -__append_dir_to_path() -{ - local dir - for dir; do - case "$PATH" in - "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;; - *) test -d "$dir" && path+="$dir";; - esac - done -} - -__prepend_dir_to_path $BINDIR -__append_dir_to_path /usr/lib/surfraw - -# vim:ft=zsh