-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
58 lines (37 loc) · 1.39 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
source /usr/local/share/antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle heroku
antigen bundle pip
antigen bundle lein
antigen bundle kubectl
antigen bundle command-not-found
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle mafredri/zsh-async
antigen apply
autoload -U promptinit; promptinit
prompt pure
eval "$(direnv hook zsh)"
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=5'
export PATH="/usr/local/sbin:$PATH"
# if [ "$TMUX" = "" ]; then tmux; fi
alias ls='exa'
alias la='exa --all'
alias ll='exa -l'
alias lll='exa -l | less'
alias lla='exa -la'
alias llt='exa -T'
alias llfu='exa -bghHliS --git'
# Go development
export GOPATH="${HOME}/.go"
export GOROOT="$(brew --prefix golang)/libexec"
export PATH="$PATH:${GOPATH}/bin:${GOROOT}/bin"
test -d "${GOPATH}" || mkdir "${GOPATH}"
test -d "${GOPATH}/src/github.com" || mkdir -p "${GOPATH}/src/github.com"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/rodrigo.quezada/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/rodrigo.quezada/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/rodrigo.quezada/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/rodrigo.quezada/google-cloud-sdk/completion.zsh.inc'; fi
source ~/.cargo/env
export PATH="$(pyenv root)/libexec/pyenv:$PATH"