-
Notifications
You must be signed in to change notification settings - Fork 1
/
.zshrc
62 lines (49 loc) · 1.54 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
# General variables
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export TERM=xterm-256color
# Path to your oh-my-zsh installation.
export ZSH=~/.oh-my-zsh
export ZSH_CUSTOM=~/.oh-my-zsh-custom
# Plugins
plugins=(
emacs
git
docker
ripgrep
fzf
zsh-syntax-highlighting
zsh-autosuggestions
zsh-completions
)
# Uncomment the following line to display red dots whilst waiting for completion.
COMPLETION_WAITING_DOTS="true"
source $ZSH/oh-my-zsh.sh
# Additional imports
[ -f ~/.work.zsh ] && source ~/.work.zsh
[ -f ~/.aliases ] && source ~/.aliases
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# Setup pure theme
fpath+=("$HOME/.zsh/pure")
autoload -U promptinit; promptinit
prompt pure
export PATH=$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH
export PATH=/usr/local/opt/openssl/bin:$PATH
export PATH=/usr/local/opt/curl/bin:$PATH
export PATH=/usr/local/opt/curl-openssl/bin:$PATH
export PATH=$HOME/.jenv/bin/$PATH
export CLOUDSDK_PYTHON=$(which python2)
export EMACS="*term*"
export BAT_THEME="gruvbox-dark"
# For compilers to find zlib you may need to set:
export LDFLAGS="${LDFLAGS} -L/usr/local/opt/zlib/lib"
export CPPFLAGS="${CPPFLAGS} -I/usr/local/opt/zlib/include"
# For pkg-config to find zlib you may need to set:
export PKG_CONFIG_PATH=${PKG_CONFIG_PATH}/usr/local/opt/zlib/lib/pkgconfig
# Initialize pyenv
eval "$(pyenv init -)"
# Initialize jenv
eval "$(jenv init -)"
export PATH="/usr/local/sbin:$PATH"