-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzsh_config
56 lines (47 loc) · 1.13 KB
/
zsh_config
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Source other aliases
# Source other plugins
if [ -f ~/.zsh/zsh_pentest ]; then
source ~/.zsh/zsh_pentest
else
print "404: ~/.zsh/zsh_pentest not found."
fi
if [ -f ~/.zsh/zsh_nmap ]; then
source ~/.zsh/zsh_nmap
else
print "404: ~/.zsh/zsh_nmap not found."
fi
if [ -f ~/.zsh/zsh_websearch ]; then
source ~/.zsh/zsh_websearch
else
print "404: ~/.zsh/zsh_websearch not found."
fi
if [ -f ~/.zsh/zsh_myaliases ]; then
source ~/.zsh/zsh_myaliases
else
print "404: ~/.zsh/zsh_myaliases not found."
fi
if [ -f ~/.zsh/zsh_git ]; then
source ~/.zsh/zsh_git
else
print "404: ~/.zsh/zsh_git not found."
fi
if [ -f ~/.zsh/zsh_copyfunc ]; then
source ~/.zsh/zsh_copyfunc
else
print "404: ~/.zsh/zsh_copyfunc not found."
fi
if [ -f ~/.zsh/zsh_jsontools ]; then
source ~/.zsh/zsh_jsontools
else
print "404: ~/.zsh/zsh_jsontools not found."
fi
if [ -f ~/.zsh/zsh_dirhistory ]; then
source ~/.zsh/zsh_dirhistory
else
print "404: ~/.zsh/zsh_dirhistory not found."
fi
if [ -f ~/.zsh/zsh_interactivecd ]; then
source ~/.zsh/zsh_interactivecd
else
print "404: ~/.zsh/zsh_interactivecd not found."
fi