This is a fork of the official Cascadia Code font. It replaces the greater-than less-than ligature (<>
) with the not equal (≠
) ligature.
The fonts are available for download from /build/ttf/.
Cascadia is a fun new coding font that comes bundled with Windows Terminal, and is now the default font in Visual Studio as well.
Cascadia Code
: standard version of CascadiaCascadia Mono
: a version of Cascadia that doesn't have ligaturesCascadia (Code|Mono) PL
: a version of Cascadia that has embedded Powerline symbolsCascadia (Code|Mono) NF
: a version of Cascadia that has Nerd Font symbols
For the italic, there is a standard italic
and a cursive
variant accessible via ss01
(see below).
Note:
<>
is replaced with ≠
in this patched version.
Enabling stylistic sets will vary between applications. For example, in VS Code, you can enable stylistic sets (and other OpenType features) via settings.json
:
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss19', 'ss20'"
"editor.fontLigatures": "'calt', 'ss01'",
If you're using an environment that does not support the ss01
OT feature, one option to consider is opentype-feature-freezer.
Note: If you have previously installed a version of Cascadia Code, please uninstall the previous version prior to installing a new version. Not doing so can result in improper rendering.
The patched fonts can be downloaded from: /build/ttf/.
To build the fonts yourself, follow these steps:
- Clone the Repository:
git clone https://github.com/TheCaffeinatedJourney/cascadia-code-patched.git cd cascadia-code-patched
- Set Up a Virtual Environment:
python3 -m venv .venv source .venv/bin/activate
- Install Dependencies:
Use the requirements.txt file to install all necessary dependencies:
pip install -r requirements.txt
- Buid the fonts:
Run the
build.py
script to generate the fonts:python build.py
- Locate the fonts:
The fonts will be located in the
/build/ttf/
directory.