-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
38 lines (33 loc) · 837 Bytes
/
.zshrc
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
########################################
## .zshrc.local to complement
## grml's .zshrc
## by fa[at]art-core.org
## ported from .bashrc 0.91, 2011-08-09
########################################
## 2021-02-03
my_version='1.5'
########################################
#set -x
Z=~/code/dotfiles/zsh
## host-specific stuff, purely optional
if [ -f ~/.config/art-core/.profile.pre ]; then
source ~/.config/art-core/.profile.pre
fi
## grml defaults
#source ${Z}/zshrc.base
## environment
source $Z/environment.zsh
## aliases
source $Z/aliases.zsh
## options
source $Z/options.zsh
## functions
source $Z/functions.zsh
## completion
source $Z/completion.zsh
## prompt
source $Z/prompt_256.zsh
## host-specific stuff, purely optional
if [ -f ~/.config/art-core/.profile.post ]; then
source ~/.config/art-core/.profile.post
fi