Files
dotfiles/.config/fontconfig/fonts.conf
2026-02-06 17:17:48 +08:00

56 lines
2.3 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig>
<!-- 【1. 为不同字体族指定正确的JetBrains变体】 -->
<!-- 1.1 无衬线字体(用于界面、文档):使用比例字体 -->
<match target="pattern">
<test qual="any" name="family"><string>sans-serif</string></test>
<edit name="family" mode="prepend" binding="strong">
<string>JetBrainsMono Nerd Font</string>
<string>Noto Sans CJK SC</string> <!-- 中文回退 -->
</edit>
</match>
<!-- 1.2 衬线字体(用于少量文档):同样使用比例字体 -->
<match target="pattern">
<test qual="any" name="family"><string>serif</string></test>
<edit name="family" mode="prepend" binding="strong">
<string>JetBrainsMono Nerd Font</string>
<string>Noto Serif CJK SC</string> <!-- 中文回退 -->
</edit>
</match>
<!-- 1.3 等宽字体(用于终端、代码):必须使用等宽字体 -->
<match target="pattern">
<test qual="any" name="family"><string>monospace</string></test>
<edit name="family" mode="prepend" binding="strong">
<string>JetBrainsMono Nerd Font Mono</string>
<string>Noto Sans Mono CJK SC</string> <!-- 中文回退 -->
</edit>
</match>
<!-- 【2. 为Nerd Font添加图标回退防止方框-->
<match target="pattern">
<test name="family"><string>JetBrainsMono Nerd Font</string></test>
<edit name="family" mode="append" binding="strong">
<string>Symbols Nerd Font</string>
<string>Noto Color Emoji</string>
</edit>
</match>
<match target="pattern">
<test name="family"><string>JetBrainsMono Nerd Font Mono</string></test>
<edit name="family" mode="append" binding="strong">
<string>Symbols Nerd Font Mono</string>
<string>Noto Color Emoji</string>
</edit>
</match>
<!-- 【3. 保留优秀的全局渲染设置】 -->
<match target="font">
<edit name="antialias" mode="assign"><bool>true</bool></edit>
<edit name="hinting" mode="assign"><bool>true</bool></edit>
<edit name="hintstyle" mode="assign"><const>hintslight</const></edit>
<edit name="rgba" mode="assign"><const>rgb</const></edit>
</match>
</fontconfig>