-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
102 lines (83 loc) · 3.45 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Put user bin first
export PATH=$HOME/bin:/opt/homebrew/bin:$PATH
# export PATH=$HOME/bin:/usr/local/bin:/opt/homebrew/bin:$PATH
export PATH=$PATH:$HOME/.local/bin
export PATH="$HOME/.cargo/bin:$PATH"
# Add code (vscode) command to path
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
# why is this needed, should be linked to main brew bin?
export PATH="$PATH:/opt/homebrew/opt/postgresql@12/bin"
# export PATH=/Users/patrick.gilday/.pgo/pgo:$PATH
# Path to oh-my-zsh installation.
# if [ "$TERM_PROGRAM" != "Apple_Terminal" ]; then
# eval "$(oh-my-posh init zsh)"
# fi
# env maybe move to .zshenv
export KUBECONFIG=${HOME}/.kube/config
# golang configs
export GOPATH=$HOME/go
export GOBIN=$HOME/bin
export PATH=$PATH:$GOPATH/bin
# Setup NVM
export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && . "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && . "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
# Volta Setup
export VOLTA_HOME="$HOME/.volta"
export PATH="$VOLTA_HOME/bin:$PATH"
# later versions of osx with brew at
# export NVM_DIR="$HOME/.nvm"
# # This loads nvm
# [ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh"
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
export ZSH="$HOME/.oh-my-zsh"
# OHMYZSH
# Standard plugins can be found in ~/.oh-my-zsh/plugins/*
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(vi-mode)
ZSH_THEME="robbyrussell"
source $ZSH/oh-my-zsh.sh
# needs to be after oh-my-zsh setup
# Enables zsh shell completion for kubectl
if type "$/usr/local/bin/kubectl" > /dev/null; then
[[ /usr/local/bin/kubectl ]] && source <(kubectl completion zsh)
fi
if type "$/usr/local/bin/helm" > /dev/null; then
[[ /usr/local/bin/helm ]] && source <(helm completion zsh)
fi
if [ -f "$HOME/.private" ]; then
source ~/.private
fi
source ~/.aliases
# Section: FZF
eval "$(fzf --zsh)"
export CONDA_AUTO_ACTIVATE_BASE=false
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/patrick.gilday/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/patrick.gilday/miniconda3/etc/profile.d/conda.sh" ]; then
. "/Users/patrick.gilday/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/Users/patrick.gilday/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/patrick.gilday/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/patrick.gilday/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/patrick.gilday/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/patrick.gilday/google-cloud-sdk/completion.zsh.inc'; fi
# Ruby
# TODO: choose rvm or rbenv and setup
# eval "$(rbenv init - zsh)"
# export PATH="$PATH:$HOME/.rbenv/shims"
# Add RVM to PATH for scripting.
export PATH="$PATH:$HOME/.rvm/bin"
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
eval "$(direnv hook zsh)"