1 # Path to your oh-my-zsh configuration.
4 # Set name of the theme to load.
5 # Look in ~/.zsh/themes/
6 # Optionally, if you set this to "random", it'll load a random theme each
7 # time that oh-my-zsh is loaded.
10 # Set to this to use case-sensitive completion
13 # Comment this out to disable bi-weekly auto-update checks
14 DISABLE_AUTO_UPDATE="true"
16 # Uncomment to change how many often would you like to wait before auto-updates occur? (in days)
17 # export UPDATE_ZSH_DAYS=13
19 # Uncomment following line if you want to disable colors in ls
20 # DISABLE_LS_COLORS="true"
22 # Uncomment following line if you want to disable autosetting terminal title.
23 # DISABLE_AUTO_TITLE="true"
25 # Uncomment following line if you want red dots to be displayed while waiting for completion
26 # COMPLETION_WAITING_DOTS="true"
28 # Which plugins would you like to load? (plugins can be found in ~/.zsh/plugins/*)
29 # Custom plugins may be added to ~/.zsh/custom/plugins/
30 # Example format: plugins=(rails git textmate ruby lighthouse)
33 source $ZSH/oh-my-zsh.sh
35 # miscelaneous options
38 setopt csh_nullglob # if glob does not match, remove pattern, if no glob matches print error
39 setopt numeric_glob_sort # sort numerically not lexically
40 setopt noclobber # don't allow overwriting files with '>', use '>!' instead
42 setopt rcquotes # echo 'don''t'; prints don't
45 typeset -U path # make path a unique array
46 [[ -d ~/bin ]] && path=(~/bin $path)
49 typeset -U fpath # make fpath a unique array
50 [[ -d ~/.zsh/functions ]] && fpath=(~/.zsh/functions $fpath)
51 autoload -U ${fpath[1]}/*(:t) # loads all functions in the first element of fpath
54 [[ -f ~/.aliases ]] && source ~/.aliases
56 # set up a few named directories
57 hash -d Skaro=/mnt/Skaro
60 hash -d chroot_testing=/buildsystem/testing/buildroot
61 hash -d chroot_master=/buildsystem/master/buildroot
62 hash -d chroot_lib32=/buildsystem/lib32/buildroot
63 hash -d wineprefixes=/mnt/sdd5/wineprefixes