-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc-darwin
24 lines (19 loc) · 1.06 KB
/
.zshrc-darwin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# .zshrc-darwin
# macOS-specific shell configuration
export PATH="/usr/local/sbin:$PATH"
export PATH=/opt/apache-maven-3.6.3/bin:$PATH # maven
export PATH=/Library/PostgreSQL/13/bin:$PATH # postgres
export PATH=~/.npm-global/bin:$PATH # npm
source ~/.zsh/plugins/profile/profile.sh # profile command.
# libpq patch for Ruby pq gem
eval "$(fnm env --use-on-cd)" # fnm
export PATH="/usr/local/opt/libpq/bin:$PATH"
export PKG_CONFIG_PATH=/usr/local/opt/libpq/lib/pkgconfig
export PATH="$PATH:$HOME/.rvm/bin" # rvm
export PATH="$PATH:$HOME/.mix/escripts" # elixir escripts
# Live, Laugh, Delete Derived Data
alias nukedd="rm -rf ~/Library/Developer/Xcode/DerivedData/"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/aaronsutton/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/aaronsutton/Downloads/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/aaronsutton/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/aaronsutton/Downloads/google-cloud-sdk/completion.zsh.inc'; fi