From 8165497f4c9d94bf82b750152af0105f24b6c820 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Tue, 28 Apr 2020 09:49:21 -0700 Subject: [PATCH] Add pyenv evals and k8 map to kubectl --- dotfiles/bash/bash_profile | 5 +++++ dotfiles/bash/bashrc | 2 ++ 2 files changed, 7 insertions(+) diff --git a/dotfiles/bash/bash_profile b/dotfiles/bash/bash_profile index 0dca161..a5ed823 100644 --- a/dotfiles/bash/bash_profile +++ b/dotfiles/bash/bash_profile @@ -2,3 +2,8 @@ if [[ -f ~/.bashrc ]]; then source ~/.bashrc fi +eval "$(pyenv init -)" +eval "$(pyenv virtualenv-init -)" + +# Enable homebrew openssl support +export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/ diff --git a/dotfiles/bash/bashrc b/dotfiles/bash/bashrc index cf8a812..659c702 100644 --- a/dotfiles/bash/bashrc +++ b/dotfiles/bash/bashrc @@ -90,6 +90,8 @@ alias gitp='git push' alias gits='git status' alias gitd='git diff' +alias k8='kubectl' + # -------------- END ALIASES --------------#