A couple of minor fixes to zshrc

This commit is contained in:
Gene Liverman 2021-05-21 14:17:38 -04:00 committed by Gene Liverman
parent 2774579009
commit 668ceb06a4
No known key found for this signature in database
GPG key ID: 3AF83985B6C857C6

View file

@ -9,6 +9,7 @@ if [[ `uname` == 'Linux' ]]; then
#ZSH_THEME="af-magic" #ZSH_THEME="af-magic"
else else
ZSH_THEME="beanbag" ZSH_THEME="beanbag"
#ZSH_THEME="robbyrussell"
#ZSH_THEME="pygmalion" #ZSH_THEME="pygmalion"
#ZSH_THEME="muse" #ZSH_THEME="muse"
fi fi
@ -223,7 +224,7 @@ if [[ `uname` == 'Darwin' ]]; then
if [ -f $gcloud_zsh_completions ]; then source $gcloud_zsh_completions; fi if [ -f $gcloud_zsh_completions ]; then source $gcloud_zsh_completions; fi
# use homebrew's ruby # use homebrew's ruby
[ -d "/opt/homebrew/opt/ruby@2.7/bin" ] && export PATH=/opt/homebrew/opt/ruby@2.7/bin:$PATH [ -d "/opt/homebrew/opt/ruby@2.7/bin" ] && export PATH='/opt/homebrew/opt/ruby@2.7/bin':$PATH
# hide ruby 2.7's extra output # hide ruby 2.7's extra output
export RUBYOPT='-W:no-deprecated -W:no-experimental' export RUBYOPT='-W:no-deprecated -W:no-experimental'