summaryrefslogtreecommitdiff
path: root/fontconfig
diff options
context:
space:
mode:
Diffstat (limited to 'fontconfig')
-rw-r--r--fontconfig/.config/fontconfig/fonts.conf28
1 files changed, 28 insertions, 0 deletions
diff --git a/fontconfig/.config/fontconfig/fonts.conf b/fontconfig/.config/fontconfig/fonts.conf
new file mode 100644
index 0000000..f54c480
--- /dev/null
+++ b/fontconfig/.config/fontconfig/fonts.conf
@@ -0,0 +1,28 @@
+<?xml version="1.0"?>
+<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
+<fontconfig>
+ <!-- Make sure Noto Color Emoji and Symbols Nerd are used for all languages -->
+ <match>
+ <test name="family">
+ <string>Noto Color Emoji</string>
+ </test>
+ <edit name="lang" mode="delete_all" />
+ </match>
+
+ <match>
+ <test name="family">
+ <string>Symbols Nerd Font</string>
+ </test>
+ <edit name="lang" mode="delete_all" />
+ </match>
+
+ <!-- Use Fira Mono as the monospace font -->
+ <match target="pattern">
+ <test name="family" qual="any">
+ <string>monospace</string>
+ </test>
+ <edit binding="same" mode="prepend" name="family">
+ <string>Fira Mono</string>
+ </edit>
+ </match>
+</fontconfig>