blob: ef705b6d4e98e903c42f699399b2f4655e1be363 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
## vim:ft=zsh
## Copyright (c) 2008, 2009 by Daniel Friesel <derf@derf.homelinux.org>
## Unless otherwise noted, this Licence applies to all files sourced here:
## 0. You just DO WHAT THE FUCK YOU WANT TO.
##
## https://derf.homelinux.org/~derf/dotfiles/zsh/rc
## see also: https://derf.homelinux.org/~derf/dotfiles/zsh/
source $ZDIR/osdetect
source $ZDIR/rc_status
source $ZDIR/options
source $ZDIR/parameters
source $ZDIR/function
source $ZDIR/zle
source $ZDIR/prompt
source $ZDIR/directories
source $ZDIR/keys
source $ZDIR/alias
source $ZDIR/misc
zrc_status "includes"
source $ZDIR/../provided/includes
xsource $ZDIR/local # local configuration, not in git
xsource $HOME/var/tmp/envstore-raw-$UID # envstore
xsource $ZDIR/hosts/$HOST # local configuration in git
source $ZDIR/completion
source $ZDIR/cleanup
|