Sanchayan Maity
74b4f194b8
The vanilla JetBrains Mono does not render some ligatures like => properly which made us use nerd-fonts package. However, the nerd-fonts jetbrains-mono font seems to sometimes cause problems with kitty not recognizing it by the standard name. Could be a fontconfig issue as well. Switch to Victor Mono which also has ligature support and does not seem to suffer from the problem above. We need the nerd-fonts version as well due to nvim-web-devicons requiring patched fonts. Deploying the fontconfig change seems to make the devicons in the neovim status line render better at least size wise.
18 lines
388 B
XML
18 lines
388 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
<fontconfig>
|
|
<alias>
|
|
<family>Victor Mono</family>
|
|
<default>
|
|
<family>monospace</family>
|
|
</default>
|
|
</alias>
|
|
<alias>
|
|
<family>monospace</family>
|
|
<prefer>
|
|
<family>Victor Mono</family>
|
|
<family>VictorMono Nerd Font</family>
|
|
</prefer>
|
|
</alias>
|
|
</fontconfig>
|
|
|