Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing powerline fonts for zsh + Prezto theme

I am currently using Zsh + Prezto for my scripting shell configuration. I have been using the sorin theme but am a little dissatisfied with it. I'd like to switch to the paradox theme!

It is supposed to look like this:

Blockquote

I'm having some trouble doing that. When I switch to the theme, the symbols aren't able to load, so I get a prompt that looks like this:

Blockquote

Notice the boxed question marks where there should be an edge border for the background or a branch symbol for the git branch. (Take a look at the paradox theme preview here).

I've seen here that I should install Powerline patched fonts for the symbols to load in correctly. However, as I'm somewhat unfamiliar with the process, I would love some help installing it into my OS X.

In the documentation, it notes I should install via pip. When I run pip install --user powerline-status, my prompt is still unable to display the symbols the way it should look.

What else must I do, after running the installation, to display this prompt correctly?

I am using a MacBook Pro with El Capitan


Update: I have installed the powerline fonts and run the install.sh exec, changed my terminal preferred font, and tested out the new look of the prompt. The symbols now display, however, they are raised from the baseline of the prompt row, like so:

enter image description here

Notice that the symbol of "\ue0b0" is elevated from the bottom of the row.

like image 230
Cole Bittel Avatar asked Oct 20 '15 14:10

Cole Bittel


People also ask

What font does zsh use?

DejaVu Sans Mono Nerd Font. Fira Code Nerd Font.


2 Answers

If you're a macOS user, the Powerline glyphs are now built-in to iTerm (as of 3.3.7, 17 Nov 2019) but disabled by default.

You can enable the fonts by toggling the checkbox in iTerm > Preferences > Profiles > Text:

iTerm2 Preferences Showing Powerline Fonts Checkbox Option

Any newly opened Terminal windows will render supported Unicode characters as glyphs, as shown the following screenshot test.

$ echo "\ue0b0 \u00b1 \ue0a0 \u27a6 \u2718 \u26a1 \u2699"

Screenshot of iTerm Window with Powerline Symbols font


If you'd rather manually manage the installation of the Powerline Symbols, you can use Homebrew Casks:

$ brew tap homebrew/cask-fonts

$ brew cask install font-powerline-symbols

This will install the PowerlineSymbols.otf typeface for you to use system-wide.

like image 198
rjb Avatar answered Sep 24 '22 01:09

rjb


It is all about the Powerline symbols.

To get the Powerline symbols working as [email protected] has:

  1. Download a Powerline font. A good font for downloading can be found at https://github.com/powerline/fonts

  2. Install it by running ./install.sh.

  3. Change the font in your Terminal preferences to use the new Powerline font.

enter image description here

  1. Test! To test the glyphs in a terminal: echo "\ue0b0 \u00b1 \ue0a0 \u27a6 \u2718 \u26a1 \u2699"

enter image description here

The prior instructions were intended for Mac OS version 10.11 with Terminal, but may work similar for other setups.

like image 23
haiLong Avatar answered Sep 25 '22 01:09

haiLong