DEV Community

Peiwen Li
Peiwen Li

Posted on

Install `Fira Code Font` in VSCode

"Fira Code" is a font which helps the readability of your code. This is how you install it on VSCode.

  • Firstly, install the font: You can run the following command on mac or visit this post on github for other OS.
brew tap homebrew/cask-fonts
brew cask install font-fira-code
Enter fullscreen mode Exit fullscreen mode
  • Edit thesettings.json file in VSCode
//settings.json
{
  //...
  "editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
  "editor.fontLigatures": true
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)