We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
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
The text was updated successfully, but these errors were encountered: