-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
32 lines (21 loc) · 923 Bytes
/
.bashrc
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
alias ll='ls -alG'
alias mv='mv -i'
alias pstree='pstree -g 3'
alias kc='kubectl'
if [ -f "$(brew --prefix bash-git-prompt)/share/gitprompt.sh" ]; then
GIT_PROMPT_THEME=Default_NoExitState
source "$(brew --prefix bash-git-prompt)/share/gitprompt.sh"
fi
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
eval "$(jenv init -)"
export NVM_DIR="$HOME/.nvm"
[ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh" # This loads nvm
[ -s "/usr/local/opt/nvm/etc/bash_completion" ] && . "/usr/local/opt/nvm/etc/bash_completion" # This loads nvm bash_completion
export NODE_ENV=development
export GROOVY_HOME=/usr/local/opt/groovy/libexec
export PATH=$PATH:/Users/nwalther/bin:/Users/nwalther/workspace/confluent/bin
export PKG_CONFIG_PATH=/usr/local/opt/libffi/lib/pkgconfig
complete -C aws_completer aws
source <(kubectl completion bash)