fixed broken git repo

This commit is contained in:
paul-loedige
2023-04-18 22:46:18 +02:00
parent e6df7505f6
commit a318f7624d
17 changed files with 604 additions and 241 deletions
+9 -4
View File
@@ -72,6 +72,9 @@ export PATH=$PATH:~/.local/bin
export PATH=$PATH:~/.emacs.d/bin
### ALIAS' ###
# docker
alias docker='sudo docker'
#jokes
alias dog='cat'
alias rr='curl -s -L https://raw.githubusercontent.com/keroserene/rickrollrc/master/roll.sh | bash' #rickroll
@@ -140,21 +143,23 @@ alias ftemplate='git fetch template'
alias mtemplate='git merge template/master --allow-unrelated-histories'
alias log='git log'
### AUTOSTART ###
#neofetch
neofetch
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/paul/anaconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
__conda_setup="$('/usr/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/paul/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/paul/anaconda3/etc/profile.d/conda.sh"
if [ -f "/usr/etc/profile.d/conda.sh" ]; then
. "/usr/etc/profile.d/conda.sh"
else
export PATH="/home/paul/anaconda3/bin:$PATH"
export PATH="/usr/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<