I'd recommend installing powerline patched fonts: https://github.com/powerline/fonts
This theme goes best with a solarized-dark terminal. (I use VSCode & set the color theme of my editor to solarized dark)
To install, clone the repo & move the theme into your zsh themes directory: 1.
git clone https://github.com/soybean/cool-zsh.git; cd cool-zsh; cp cool.zsh-theme ~/.oh-my-zsh/themes
ZSH_THEME="cool"
cd ..; rm -rf cool-zsh
You can also experiment with other color gradients:
If you'd like to customize the colors yourself, run this block of code in your terminal & you'll see the full 256 terminal colors:
for COLOR in {0..255}
do
for STYLE in "38;5"
do
TAG="\033[${STYLE};${COLOR}m"
STR="${STYLE};${COLOR}"
echo -ne "${TAG}${STR}${NONE} "
done
echo
done
output:
Footnotes
-
path to your themes directory may vary, replace
oh-my-zsh/themes
with your path ↩