update many things

This commit is contained in:
Oliver Ladner 2023-03-30 22:41:18 +02:00
commit e35f0afc4e
5 changed files with 33 additions and 151 deletions

View file

@ -32,14 +32,22 @@ fi
# Fetch a Splunk auth token for ansible history
if [ ! -z $VAULT_TOKEN ]; then export SPLUNK_AUTHTOKEN=$(curl -X GET https://vault.unic.com/api/v1/secrets/14730/fields/api-key -H "Authorization: Bearer $VAULT_TOKEN" -s | tr -d \"); else echo "Splunk: \$VAULT_TOKEN not set"; fi
export VIRTUALENV_PYTHON=/usr/local/bin/python3
export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
export WORKON_HOME=~/python_envs/
source /usr/local/bin/virtualenvwrapper.sh
eval $(thefuck --alias)
test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shell_integration.bash"
ulimit -n 1024
. "$HOME/.cargo/env"
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/oliver.ladner/opt/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/oliver.ladner/opt/miniconda3/etc/profile.d/conda.sh" ]; then
. "/Users/oliver.ladner/opt/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/Users/oliver.ladner/opt/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<