Skip to content

Instantly share code, notes, and snippets.

@agriffis
Created November 15, 2023 17:56
Show Gist options
  • Save agriffis/f396ef711e4124900f6a47cc63fe95d6 to your computer and use it in GitHub Desktop.
Save agriffis/f396ef711e4124900f6a47cc63fe95d6 to your computer and use it in GitHub Desktop.
Allow kitty to use Monaspace fonts
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- https://sw.kovidgoyal.net/kitty/faq/#kitty-is-not-able-to-use-my-favorite-font -->
<fontconfig>
<match target="scan">
<test name="family"><string>Monaspace Argon Var</string></test>
<edit name="spacing"><int>100</int></edit>
</match>
<match target="scan">
<test name="family"><string>Monaspace Krypton Var</string></test>
<edit name="spacing"><int>100</int></edit>
</match>
<match target="scan">
<test name="family"><string>Monaspace Neon Var</string></test>
<edit name="spacing"><int>100</int></edit>
</match>
<match target="scan">
<test name="family"><string>Monaspace Radon Var</string></test>
<edit name="spacing"><int>100</int></edit>
</match>
<match target="scan">
<test name="family"><string>Monaspace Xenon Var</string></test>
<edit name="spacing"><int>100</int></edit>
</match>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment