19 lines
715 B
XML
19 lines
715 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
|
|
<fontconfig>
|
|
<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="eq" ignore-blanks="true">
|
|
<string>Nimbus Mono</string>
|
|
</test>
|
|
<edit name="fontfeatures" mode="append">
|
|
<string>liga off</string>
|
|
<string>dlig off</string>
|
|
</edit>
|
|
</match>
|
|
<match target="pattern">
|
|
<test qual="any" name="family" compare="contains"><string>Nimbus Mono</string></test>
|
|
<edit name="family" mode="assign" binding="same"><string>Noto Sans Mono</string></edit>
|
|
</match>
|
|
</fontconfig>
|