-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbash_profile
More file actions
executable file
·36 lines (28 loc) · 1.1 KB
/
Copy pathbash_profile
File metadata and controls
executable file
·36 lines (28 loc) · 1.1 KB
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
export PATH=~/.dotfiles/bin:/home/dbomhof/bin:/usr/local/opt/python/libexec/bin:/usr/local/lib/python2.7/site-packages:/usr/local/bin:$PATH
# Alias file
source ~/.dotfiles/alias
export EDITOR='vim'
# Git completion
source ~/.dotfiles/git-completion.bash
source ~/.dotfiles/git-prompt.sh
if [ -f ~/.profile ]; then
source ~/.source
fi
PS1='[\u@\h \w$(__git_ps1 " (%s) ")]\$ '
# Node package manager
export NODE_PATH=/usr/local/lib/node
# Clear out flow control characters <C-s>, <C-q> so VIM has
# access to them
stty -ixon -ixoff
#test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shell_integration.bash"
if [ ! -f /etc/issue ]; then
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
fi
export PATH="/usr/local/opt/python/libexec/bin:/Users/dbomhof/bin:$PATH"
export PATH="/usr/local/sbin:$PATH"
export PATH="/usr/local/sbin:$PATH"
export PATH="/usr/local/opt/imagemagick@6/bin:$PATH"
# Kubectl completion
source <(kubectl completion bash)
complete -F __start_kubectl k
export PATH="${PATH}:${HOME}/.krew/bin"