]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - zsh/host/env.rammstein
shell/env: Move shell functions to shell/functions.
[config/dotfiles.git] / zsh / host / env.rammstein
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 # vim: ft=zsh