22 lines
629 B
Bash
22 lines
629 B
Bash
export PAGER="less -R"
|
|
export EDITOR="nvim"
|
|
|
|
PS1="%F{green}[%T] %F{cyan}(%n@%m) %F{lightgrey}(%y)
|
|
%F{white}%(!.%F{red}>>.$>) "
|
|
|
|
# >>> conda initialize >>>
|
|
# !! Contents within this block are managed by 'conda init' !!
|
|
__conda_setup="$('/Users/zaphar/opt/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
|
|
if [ $? -eq 0 ]; then
|
|
eval "$__conda_setup"
|
|
else
|
|
if [ -f "/Users/zaphar/opt/miniconda3/etc/profile.d/conda.sh" ]; then
|
|
. "/Users/zaphar/opt/miniconda3/etc/profile.d/conda.sh"
|
|
else
|
|
export PATH="/Users/zaphar/opt/miniconda3/bin:$PATH"
|
|
fi
|
|
fi
|
|
unset __conda_setup
|
|
# <<< conda initialize <<<
|
|
|