]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - zsh/env.local
Simplified loading of config files by using a function.
[config/dotfiles.git] / zsh / env.local
1 # Zsh configuration file for environment related options for my local computer.
2
3
4 # Path to my local "unix" directory where my scripts, configuration files and
5 # other unix related data is stored.
6 MYUNIX=~/Documents/unix
7
8 # Add my bin/ directory, macports bin/ and sbin/ and the X11 bin/ directory to
9 # the default PATH. -g is necessary as the file is loaded by source_config(),
10 # otherwise the path wouldn't be changed outside the function.
11 typeset -g -U path
12 path=($MYUNIX/bin /opt/local/bin /opt/local/sbin $path /usr/X11R6/bin)
13
14 # Necessary for xterm to find man pages through PATH.
15 unset MANPATH