# Fira Code — Free Monospaced Font with Programming Ligatures > A free monospaced font containing ligatures for common programming multi-character combinations, improving code readability in any editor or terminal. ## Install Save as a script file and run: # Fira Code — Free Monospaced Font with Programming Ligatures ## Quick Use ```bash # Homebrew (macOS) brew install --cask font-fira-code # apt (Debian/Ubuntu) sudo apt install fonts-firacode # Or download manually from GitHub Releases # Then enable ligatures in your editor settings ``` ## Introduction Fira Code is a monospaced font extended with programming ligatures that merge multi-character sequences like `!=`, `=>`, and `->` into single glyphs. Built on top of Fira Mono by Mozilla, it makes source code more compact and easier to scan without changing the underlying characters. ## What Fira Code Does - Renders over 140 programming ligatures for operators and symbols - Supports most popular programming and markup languages - Provides multiple character variants and stylistic sets for customization - Ships with variable font support for fine-grained weight control - Works in editors, terminals, and IDEs that support OpenType ligatures ## Architecture Overview Fira Code is a TrueType/OpenType font built with feature files that define contextual alternates and ligature substitution rules. The build pipeline uses Python scripts and fontmake to compile source glyphs into distributable font files. Variable font axes allow continuous weight adjustment from Light (300) to Bold (700). ## Self-Hosting & Configuration - Download `.ttf` or variable font files from the GitHub Releases page - Install system-wide or per-user depending on your OS - In VS Code: set `"editor.fontFamily": "Fira Code"` and `"editor.fontLigatures": true` - In JetBrains IDEs: Preferences → Editor → Font → select Fira Code and enable ligatures - For terminals, ensure the emulator supports OpenType ligatures (e.g., kitty, WezTerm) ## Key Features - Over 140 ligatures covering arrows, comparisons, logical operators, and more - Multiple stylistic sets let you pick alternative glyph shapes for specific characters - Variable font format for precise weight tuning - Broad editor and terminal compatibility across platforms - Active maintenance with regular glyph additions ## Comparison with Similar Tools - **JetBrains Mono** — another ligature font, designed by JetBrains with taller x-height; fewer ligatures than Fira Code - **Cascadia Code** — Microsoft's default Windows Terminal font with ligatures; smaller ligature set - **Iosevka** — highly customizable with build-time options; more complex setup - **Hasklig** — one of the first ligature fonts, focused on Haskell operators; narrower scope - **Victor Mono** — combines ligatures with cursive italics; different aesthetic ## FAQ **Q: Do ligatures change the actual characters in my file?** A: No. Ligatures are purely a rendering feature. The underlying text remains the same multi-character sequence. **Q: Can I disable specific ligatures I don't like?** A: Yes. Use stylistic sets (ss01–ss20) or character variants (cv01–cv31) in your editor's font settings to toggle individual glyph shapes. **Q: Does Fira Code work in browser-based editors?** A: Yes. Include Fira Code via Google Fonts or self-host the WOFF2 files and enable ligatures with CSS `font-variant-ligatures: contextual`. **Q: Is Fira Code free for commercial use?** A: Yes. It is released under the SIL Open Font License, which permits free commercial and personal use. ## Sources - https://github.com/tonsky/FiraCode - https://github.com/tonsky/FiraCode/wiki --- Source: https://tokrepo.com/en/workflows/3c63e5f8-4384-11f1-9bc6-00163e2b0d79 Author: Script Depot