-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
40 lines (33 loc) · 968 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
39
40
# PATHS
export WORKSPACE=${HOME}/workspace
export CONDA=${HOME}/miniconda3/bin
export ZSH=${HOME}/.oh-my-zsh
export PATH=${HOME}/bin:${HOME}/.local/bin:${HOME}/bin:${CONDA}:${PATH}
# Antigen
source ${WORKSPACE}/antigen/antigen.zsh
# LOAD OH-MY-ZSH
antigen use oh-my-zsh
# OH-MY-ZSH CONFIGURATION
DISABLE_CORRECTION="true"
HIST_STAMPS="yyyy-mm-dd"
# Load Liquid Prompt
source ${WORKSPACE}/liquidprompt/liquidprompt
# Configure the desired variant
DOTMATRIX_VARIANT="chevron"
# Load the theme
source ${WORKSPACE}/lp-dotmatrix/dotmatrix.theme && lp_theme dotmatrix
# ANTIGEN BUNDLES
antigen bundle aws
antigen bundle command-not-found
antigen bundle copyfile
antigen bundle docker
antigen bundle extract
antigen bundle git
antigen bundle screen
antigen bundle unixorn/autoupdate-antigen.zshplugin
antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-syntax-highlighting
antigen apply
# ALIAS
source ~/.alias
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh