Compare commits

..

No commits in common. "d88d70df6b05dd719ba8eb3229913dfbc8104412" and "4173e28c358cdbc5f3f89269c74f5f5c63e2b729" have entirely different histories.

3 changed files with 17 additions and 18 deletions

View file

@ -9,7 +9,7 @@ digit() {
print-time() {
TIMESTAMP="$1"
for (( i=0; i<${#TIMESTAMP}; i++ )); do
digit "${TIMESTAMP:i:1}"
digit "${TIMESTAMP:$i:1}"
done
}

View file

@ -3,7 +3,7 @@
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$("$HOME/mambaforge/bin/conda" 'shell.zsh' 'hook' 2>/dev/null)"
__conda_setup="$('$HOME/mambaforge/bin/conda' 'shell.zsh' 'hook' 2>/dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
@ -26,7 +26,7 @@ fi
# !! Contents within this block are managed by 'mamba init' !!
export MAMBA_EXE="$HOME/.local/bin/micromamba"
export MAMBA_ROOT_PREFIX="$HOME/micromamba"
__mamba_setup="$("$HOME/.local/bin/micromamba" shell hook --shell zsh --prefix "$HOME/micromamba" 2>/dev/null)"
__mamba_setup="$('$HOME/.local/bin/micromamba' shell hook --shell zsh --prefix '/home/daylin/micromamba' 2>/dev/null)"
if [ $? -eq 0 ]; then
eval "$__mamba_setup"
else
@ -66,4 +66,3 @@ snake() {
fi
fi
}