-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_bash_profile
42 lines (31 loc) · 1.28 KB
/
dot_bash_profile
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
37
38
39
40
41
42
#!/bin/bash
[[ -r ~/.bashrc ]] && . ~/.bashrc
# get docker credentials
export DOCKER_USER=
export DOCKER_API_KEY=
export DOCKER_CREDS=$DOCKER_USER:$DOCKER_API_KEY
[[-z "~/.docker_cred"]] && . ~/.docker_cred
# . /usr/local/anaconda/etc/profile.d/conda.sh # commented out by conda initialize
# conda activate # commented out by conda initialize
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/glouie/miniconda/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/glouie/miniconda/etc/profile.d/conda.sh" ]; then
. "/Users/glouie/miniconda/etc/profile.d/conda.sh"
else
export PATH="/Users/glouie/miniconda/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shell_integration.bash"
[ -s "/Users/glouie/.scm_breeze/scm_breeze.sh" ] && source "/Users/glouie/.scm_breeze/scm_breeze.sh"
################### Atuin ######################
# Install: curl --proto '=https' --tlsv1.2 -LsSf https://setup.atuin.sh | sh
. "$HOME/.atuin/bin/env"
eval "$(atuin init zsh)"
###############################################