dotfiles/.zshrc

22 lines
629 B
Bash
Raw Normal View History

2022-04-16 22:26:06 -04:00
export PAGER="less -R"
export EDITOR="nvim"
PS1="%F{green}[%T] %F{cyan}(%n@%m) %F{lightgrey}(%y)
%F{white}%(!.%F{red}>>.$>) "
2022-08-15 21:42:54 -04:00
# >>> 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 <<<