DEV Community

Cover image for Installing Fira Code on Github Codespaces.
Muhammad Ibrahim Umar
Muhammad Ibrahim Umar

Posted on

Installing Fira Code on Github Codespaces.

Before you get confuse about what fira code is, let me explain.
Fira Code is a free monospaced font containing ligatures for common programming multi-character combinations.
If you are still not okay with this explanation, you can check out Fira Code on Github.

Step 0 - Installing the font.

Open your terminal and paste this command

sudo apt install fonts-firacode
Enter fullscreen mode Exit fullscreen mode

command oputput

Step 1 - Font Configuration. [Making it active]

  • click on the gear icon at the bottom left corner.
  • Click Settings
  • Search for ligatures on the search bar
  • Click edit settings.json. then finally, copy and paste this in your settings.json file
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
Enter fullscreen mode Exit fullscreen mode

Short Gif

And that's it.
Congratulations for making it to the endπŸ‘πŸ‘πŸŽ‰πŸŽŠ

Top comments (0)