Error with Oh My ZSH themes, ZSH_THEME=”random

zsh

I get the following message after installing Oh My ZSH and changing ZSH_THEME="robbyrussel" to ZSH_THEME="random" in .zshrc.

Users/me/.oh-my-zsh/oh-my-zsh.sh:source:110: no such file or
directory: /Users/me/.oh-my-zsh/themes/“random”.zsh-theme

Best Answer

Remove the "'s from the ZSH_THEME variable. You want:

ZSH_THEME=random

in your .zshrc file. See the zsh theme documentation for an example that shows it, clearly, without the "'s on the value.