blob: a2376b775c77bafae2baa929cf89bf56fc4b0b62 (
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
29
30
31
32
33
34
35
36
37
38
|
#!/bin/zsh
#-- <startup> --
export XDG_CONFIG_HOME="$HOME/.config"
export ZDOTDIR=${XDG_CONFIG_HOME:-$HOME/.config}/zsh
export PATH=$PATH:$HOME/scripts:$HOME/.local/bin
source log.sh ".zshrc"
greet.sh
#-- </startup> --
#-- <misc> --
. "$ZDOTDIR/setup/misc.zsh"
#-- </misc> --
#-- <common_aliases> --
. "$ZDOTDIR/setup/aliases.zsh"
#-- </common_aliases> --
#-- <shell_opts> --
. "$ZDOTDIR/setup/history.zsh"
#-- </shell_opts> --
#-- <misc> --
. "$ZDOTDIR/setup/git.zsh"
#-- </misc> --
#-- <device> --
. "$ZDOTDIR/setup/device.zsh"
#-- </device> --
#-- <tools> --
. "$ZDOTDIR/setup/tools.zsh"
#-- </tools> --
#-- <gpg> --
. "$ZDOTDIR/setup/gpg.zsh"
#-- </gpg> --
|