Skip to content

Instantly share code, notes, and snippets.

@hoehermann
Created July 31, 2024 15:29
Show Gist options
  • Save hoehermann/0e9303d57caca8fd2791486e81dce96e to your computer and use it in GitHub Desktop.
Save hoehermann/0e9303d57caca8fd2791486e81dce96e to your computer and use it in GitHub Desktop.
fontconfig to disable ligatures on Monospace fonts
<?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