Created
July 31, 2024 15:29
-
-
Save hoehermann/0e9303d57caca8fd2791486e81dce96e to your computer and use it in GitHub Desktop.
fontconfig to disable ligatures on Monospace fonts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> | |
<fontconfig> | |
<!-- This file wants to reside at ~/.config/fontconfig/conf.d/00-mononolig.conf --> | |
<description>Disable ligatures for monospaced fonts to avoid ff, fi, ffi, etc. becoming only one character wide</description> | |
<match target="font"> | |
<test name="family" compare="contains" ignore-blanks="true"> | |
<string>Mono</string> | |
</test> | |
<edit name="fontfeatures" mode="append"> | |
<string>liga off</string> | |
<string>dlig off</string> | |
</edit> | |
</match> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment