From 23eb8b6453c68a032cc1723834b3babd2d78eab0 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sat, 11 Sep 2021 20:25:31 -0700 Subject: [PATCH] Fix zsh theme linking --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 0be516c..3aabb32 100755 --- a/setup.sh +++ b/setup.sh @@ -58,8 +58,8 @@ function setup_zsh() { echo "Setting up zsh..." check_or_install zsh zsh sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" - cd $HOME/.oh-my-zsh/custom - ln -s $DIR/zsh/themes + cd $HOME/.oh-my-zsh/custom/themes + ln -s $DIR/zsh/themes/raoul.zsh-theme raoul.zsh-theme sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="raoul"/' $HOME/.zshrc }