fixed broken git repo
This commit is contained in:
Submodule zsh/.oh-my-zsh/custom/plugins/zsh-autosuggestions deleted from a411ef3e09
Submodule zsh/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting deleted from 122dc46439
+9
-4
@@ -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 <<<
|
||||
|
||||
|
||||
Reference in New Issue
Block a user