Trying to improve fonts in emacs

This commit is contained in:
Tom Willemsen 2011-06-13 14:16:09 +02:00
parent a254c06aa6
commit 18ddaa5508
2 changed files with 21 additions and 17 deletions

View file

@ -81,3 +81,9 @@ xterm*color13: #AD8FA8
! bright-cyan + bright-white ! bright-cyan + bright-white
xterm*color14: cyan xterm*color14: cyan
xterm*color15: #EEEEEC xterm*color15: #EEEEEC
!xft settings
Xft.antialias: true
Xft.rgba: rgb
Xft.hinting: true
Xft.hintstyle: hintslight

View file

@ -3,34 +3,32 @@
<fontconfig> <fontconfig>
<!-- settings go here --> <!-- settings go here -->
<match target="font"> <match target="pattern">
<edit name="antialias" mode="assign"> <edit name="antialias" mode="assign">
<bool>true</bool> <bool>true</bool>
</edit> </edit>
</match>
<match target="font">
<edit name="hinting" mode="assign"> <edit name="hinting" mode="assign">
<bool>true</bool> <bool>true</bool>
</edit> </edit>
<edit name="hintstyle" mode="assign">
<const>hintslight</const>
</edit>
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match> </match>
<match target="font"> <!-- <match target="font">
<edit name="hintstyle" mode="assign">
<const>hintslight</const>
</edit>
</match>
<match target="font">
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
</match>
<match target="font">
<edit name="lcdfilter" mode="assign"> <edit name="lcdfilter" mode="assign">
<const>lcddefault</const> <const>lcddefault</const>
</edit> </edit>
</match> </match> -->
</fontconfig> </fontconfig>