DEV Community

Yuki Nagae
Yuki Nagae

Posted on

2

Setup Fira Code font for Visual Studio Code

Install Fira Code via brew:

brew tap homebrew/cask-fonts
brew install --cask font-fira-code
Enter fullscreen mode Exit fullscreen mode

Or you can do the same thing with a .Brewfile.
First edit ~/.Brewfile as:

tap "homebrew/cask-fonts"
cask "font-fira-code"
Enter fullscreen mode Exit fullscreen mode

And install with the .Brewfile by the below brew command:

brew bundle install --global
Enter fullscreen mode Exit fullscreen mode

Also, edit your Visual Studio Code settings.json :

{
    "editor.fontFamily": "Fira Code",
    "editor.fontLigatures": true,
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay