Tag Archives: Fira Code

Los Angeles Headshots by Richard Sumilang Richard Sumilang Los Angeles Headshot Photography

Add cursive fonts to VS Code

Fira Code

I have recently got into caligraphy and thought it would be neat to see cursive in my code editor as well. A quick google and I found a monospaced cursive font with ligatures! (Ligatures are basically symbols that replace pieces of code like !== to single looking character.) It’s really nice and makes some things very easy to read on top of making the coding experience a little more fun.

To get started…

  • You’ll first need to download Fira Code fonts and install them.
  • Install and apply Dark++ Italic theme.
  • Open your VS Code settings.json file and add the following lines:
{
    "editor.fontFamily": "Fira Code iScript, Menlo, Monaco, 'Courier New', monospace",
    "editor.fontLigatures": true,
}
Read More
Jun 14, 2020 2 min read