A typeface made for developers.
More about font features & design can be found on its page.
The most recent version of JetBrains Mono ships with your JetBrains IDE starting with v2019.3.
Select JetBrains Mono in the IDE settings: go to Preferences/Settings
→ Editor
→ Font
, and then select JetBrains Mono from the Font dropdown.
-
Tap the font cask to make the Jetbrains Mono font available :
brew tap homebrew/cask-fonts
-
Install it using the
font-jetbrains-mono
cask:brew install --cask font-jetbrains-mono
-
Install Chocolatey if you haven't done already. See this page for instructions on how to do that.
-
In an elevated cmd console (Run as administrator...) :
choco install jetbrainsmono
On Mac/Windows:
- Download font.
- Unzip the archive and install the font:
- Mac. Select all font files in the folder and double-click them. Click the "Install Font" button.
- Windows. Select all font files in the folder, right-click any of them, then pick "Install" from the menu.
On Linux:
Open a terminal and run the following:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/install_manual.sh)"
Once JetBrains Mono is installed in your OS, you are ready to configure the editor.
- Restart your IDE.
- Go to
Preferences/Settings
→Editor
→Font
, and pick JetBrains Mono from the Font dropdown.
- Go to the settings editor, from the File menu choose Preferences, Settings or use keyboard shortcut Ctrl+, (Cmd+, on Mac).
- In the "Font Family" input box type JetBrains Mono, replacing any content.
- To enable ligatures turn on the checkbox in "Font ligatures".
Visual Studio Code allows you to also edit the underlying settings.json config file. First open the settings editor as described above, then click the "{}
" icon, at the top right, to open the "settings.json" file.
Then paste the following lines and save the file.
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
In the terminal:
- Use the keyboard shortcut CTRL + SHIFT + P to open up settings.
- Scroll down to "Custom CSS (Inline Text)".
- Copy & paste the following:
@font-face{
font-family: 'JetBrains Mono';
src: url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/webfonts/JetBrainsMono-Regular.woff2') format('woff2'),
url('https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/ttf/JetBrainsMono-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
* {
-webkit-font-feature-settings: "liga" on, "calt" on;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-family: 'JetBrains Mono';
}
Can be found in the "Source" folder. To open them you will need Glyphs.
JetBrains Mono typeface is available under the OFL-1.1 License and can be used free of charge, for both commercial and non-commercial purposes. You do not need to give credit to JetBrains, although we will appreciate it very much if you do.
The source code is available under Apache 2.0 License
Type designer
Philipp Nurullin
Team lead
Konstantin Bulenkov
Thanks to
Nikita Prokopov
Eugene Auduchinok
Tatiana Tulupenko
Dmitrij Batrak
IntelliJ Platform UX Team
Web Team