From 3cf45f069513e93f2890ed162993438c07c98fb1 Mon Sep 17 00:00:00 2001 From: Rahsheen Porter Date: Sat, 15 Jan 2022 18:53:11 -0500 Subject: [PATCH] fix RVM bug --- .zshrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.zshrc b/.zshrc index 55fba8e4..009dbfd9 100644 --- a/.zshrc +++ b/.zshrc @@ -8,10 +8,10 @@ EOF else source "$HOME/antigen/antigen.zsh" -antigen use oh-my-zsh -antigen bundle arialdomartini/oh-my-git -antigen theme arialdomartini/oh-my-git-themes oppa-lana-style -antigen apply + antigen use oh-my-zsh + antigen bundle arialdomartini/oh-my-git + antigen theme arialdomartini/oh-my-git-themes oppa-lana-style + antigen apply fi alias config="/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME" @@ -30,7 +30,7 @@ else source ~/.fzf.zsh fi -if type rvm &> /dev/null; then +if [ ! type rvm &> /dev/null ]; then cat<