-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc.zsh
executable file
·45 lines (36 loc) · 968 Bytes
/
zshrc.zsh
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
#!/usr/bin/env zsh
# ANTIGEN
if [[ -f ~/.antigen.zsh ]] ; then
source ~/.antigen.zsh
else
echo "Downloading Antigen."
curl -s -L 'https://git.io/antigen' -o ~/.antigen.zsh && \
source ~/.antigen.zsh
fi
# CUSTOM ZSH FUNCTIONS
if [[ -f ~/.functions.zsh ]] ; then
source ~/.functions.zsh
else
echo "Downloading Functions."
curl -s -L 'https://git.io/vpShy' -o ~/.functions.zsh && \
source ~/.functions.zsh
fi
# CUSTOM ZSH PROFILE
if ! [[ -f ~/.zsh_custom_profile ]]; then
echo "Dowloading Custom Profile"
curl -s -L 'https://git.io/vpShp' -o ~/.zsh_custom_profile && \
source ~/.zsh_custom_profile
else
source ~/.zsh_custom_profile
fi
# Antigen ZSH Settings
export ALIEN_THEME="blue"
export USE_NERD_FONT=1
antigen use oh-my-zsh
antigen bundle git
antigen bundle zsh-users/zsh-syntax-highlighting
antigen theme eendroroy/alien alien
# antigen theme bhilburn/powerlevel9k powerlevel9k
antigen apply
unsetopt sharehistory
setopt Ignoreeof