Fix zsh theme linking

This commit is contained in:
Raoul Snyman 2021-09-11 20:25:31 -07:00
parent 6c2e4bee8a
commit 23eb8b6453
Signed by: raoul
GPG Key ID: F55BCED79626AE9C
1 changed files with 2 additions and 2 deletions

View File

@ -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
}