Day119 — zsh with Spaceship

Jacky Tsang
1 min readOct 29, 2019

--

On my macbook pro, I am using Catalina. Zsh is the new default terminal for it. I try to use it with a theme called “Spaceship”.

To have it installed,

  • zsh (v5.2 or recent) must be installed.
  • Powerline Font must be installed and used in your terminal, then switch font to Fira mono in the terminal.

Install powerline-font

# clone
git clone https://github.com/powerline/fonts.git --depth=1
# install
cd fonts
./install.sh
# clean-up a bit
cd ..
rm -rf fonts

Install Oh-my-zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Finally, follow the instructions in the “oh-my-zsh” section

In VScode,

"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "Fira Mono for Powerline"

add above config to settings.json

--

--

Responses (1)