Created
November 15, 2023 17:56
-
-
Save agriffis/f396ef711e4124900f6a47cc63fe95d6 to your computer and use it in GitHub Desktop.
Allow kitty to use Monaspace 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 "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