From 125eaa3a91c0e2ec5d12ccdbeb568ebfe85d492d Mon Sep 17 00:00:00 2001 From: Pedro Renato Rodrigues de Sousa <50345341+aqazix@users.noreply.github.com> Date: Wed, 18 Oct 2023 09:37:13 -0300 Subject: [PATCH] fix: Correct instructions Symbolic links don't work on Ubuntu 22.04.2 and the folder /lib is required. Instructions updated to reflect these observations. --- INSTALL.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index e621331..b3a56ce 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -6,9 +6,9 @@ If you are a git user, you can install the theme and keep up to date by cloning git clone https://github.com/dracula/zsh.git -And creating a symbolic link to [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh/)'s theme folder: +And copying the file `dracula.zsh-theme` and the folder `/lib` to [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh/)'s theme folder: - ln -s $DRACULA_THEME/dracula.zsh-theme $OH_MY_ZSH/themes/dracula.zsh-theme + cp -r $DRACULA_THEME/dracula.zsh-theme $DRACULA_THEME/lib $OH_MY_ZSH/themes/dracula.zsh-theme _P.S.: Remember that you should replace `$DRACULA_THEME` and `$OH_MY_ZSH` with the actual directories for this command to work._ @@ -22,6 +22,10 @@ _P.S.: Remember that you should replace `$DRACULA_THEME` and `$OH_MY_ZSH` with t Go to your `~/.zshrc` file and set `ZSH_THEME="dracula"`. +Load the new configuration: + + source ~/.zshrc + #### Install using [zplug](https://github.com/zplug/zplug) Just add `zplug "dracula/zsh", as:theme` to your `~/.zshrc` file.