Skip to content

How to install a Nerd Font on Warp

Erica Pisani
Erica Pisani
1 min read

I started using Vim as my IDE of choice recently, and one of the things I wanted early on was a more visually appealing icon and font set.

I kept reading about Nerd Fonts so I decided to try installing one, but the instructions for doing so were both clear and yet missing some small details that meant that I wasn't able to get set up as quickly as I would've expected.

So here are the literal step-by-step instructions for installing a Nerd Font if you're using the Warp terminal and the Homebrew package manager:

Install Nerd Fonts via Homebrew

brew tap homebrew/cask-fonts
brew install --cask font-<FONT NAME>-nerd-font

Restart Warp

Restart the terminal and go to Warp > Settings > Appearance. There's a section called 'Text' and a dropdown labelled 'Terminal font'.

Your newly installed Nerd Font from the first step will appear in that list, so you just need to select it.

(If using Neovim/Vim) Restart Neovim/Vim

Once I restarted Neovim, the updated font, along with the associated icons, rendered correctly.

tips-and-tricksvim

Comments


Related Posts

Members Public

A month of using Vim

I've wanted to dedicate time to learning Vim for probably a decade now. When I was just getting started as a junior developer, I remember thinking that the people who used it in their day-to-day were "so cool" and felt a bit of awe at how

Members Public

How to change the version of an npm package associated with a specific tag

If publishing experimental npm packages is a somewhat regular part of your development workflow, you've likely experienced some nerves around publishing that package incorrectly such that it becomes the version that anyone newly installing or upgrading the package gets. If you find that you accidentally did exactly this

How to change the version of an npm package associated with a specific tag
Members Public

How to search and filter issues and pull requests in Github by author

If you ever find yourself needing to find issues or pull requests created by someone (or a few someones) in Github, here are a few quick tips for how to do that. First up - when you're looking for an individual, you'll want to use the

How to search and filter issues and pull requests in Github by author