Dotfiles/.zsh/lib/path.zsh
Nis Wechselberg 49b2e2d658 - Added nocorrect options for git
- Updated Sublime Preferences
- Removed deprecated paths for ptolemy
- Removed deprecated paths for Stellaris Coding
2016-07-14 11:06:02 +02:00

9 lines
103 B
Bash

typeset -U path
pathdirs=()
for dir in $pathdirs; do
if [ -d $dir ]; then
path+=$dir
fi
done