-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdot_zshrc
47 lines (31 loc) · 947 Bytes
/
dot_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
# vi: ft=zsh
export DOTFILES=$HOME/dotfiles
source $HOME/antigen.zsh
antigen init $HOME/.antigenrc
zmodload zsh/zprof
# display how long all tasks over 10 seconds take
export REPORTTIME=10
if [[ -a ~/.localrc ]]; then
source ~/.localrc
fi
# initialize autocomplete
autoload -U compinit && compinit
export EDITOR='nvim'
# adding path directory for custom scripts
export PATH=$DOTFILES/bin:$PATH
# alias git to hub
if hash hub 2>/dev/null; then
eval "$(hub alias -s)"
fi
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export PATH="$HOME/.yarn/bin:$PATH"
export NVIM_LISTEN_ADDRESS=/tmp/nvim
export GOPATH="$HOME/code/go"
export PATH="$GOPATH/bin:$PATH"
export PATH="$HOME/.config/nvim/node/node_modules/.bin:$PATH"
export GPG_TTY=$(tty)
export LC_TYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export HOMEBREW_GITHUB_API_TOKEN=3a5642b66456c8672621785b8b1f30e30716d656
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"