Open matthiasdv opened 3 months ago
I just tried installing this theme on a nixOS install. When i run zsh I get:
zsh
/home/<user>/.config/oh-my-zsh/themes/dracula.zsh-theme:source:16: no such file or directory: /nix/store/lib/async.zsh
I think this is caused by .zshrc and dracula.zsh-theme being symlinks to a directory that's owned by root. /nix/store in this case.
.zshrc
dracula.zsh-theme
/nix/store
I solved this by changing this line:
https://github.com/dracula/zsh/blob/master/dracula.zsh-theme#L16C1-L16C30
to:
source ${ZSH_CUSTOM}/themes/lib/async.zsh
I just tried installing this theme on a nixOS install. When i run
zsh
I get:/home/<user>/.config/oh-my-zsh/themes/dracula.zsh-theme:source:16: no such file or directory: /nix/store/lib/async.zsh
I think this is caused by
.zshrc
anddracula.zsh-theme
being symlinks to a directory that's owned by root./nix/store
in this case.I solved this by changing this line:
https://github.com/dracula/zsh/blob/master/dracula.zsh-theme#L16C1-L16C30
to:
source ${ZSH_CUSTOM}/themes/lib/async.zsh