Switch back to JetBrains Mono
To make sure symbols still get rendered properly, we need to install the ttf-nerd-fonts-symbols package. Then make sure the below symlink is present to make it work. ln -s /usr/share/fontconfig/conf.avail/10-nerd-font-symbols.conf /etc/fonts/conf.d/10-nerd-font-symbols.conf
This commit is contained in:
parent
ab22c57805
commit
ae61dca249
8 changed files with 15 additions and 15 deletions
|
@ -58,15 +58,15 @@ font:
|
|||
# The normal (roman) font face to use.
|
||||
# Style can be specified to pick a specific face.
|
||||
normal:
|
||||
family: Victor Mono
|
||||
style: Bold
|
||||
family: JetBrains Mono
|
||||
style: Medium Italic
|
||||
|
||||
bold:
|
||||
family: Victor Mono
|
||||
family: JetBrains Mono
|
||||
style: Bold
|
||||
|
||||
italic:
|
||||
family: Victor Mono
|
||||
family: JetBrains Mono
|
||||
style: Bold Italic
|
||||
|
||||
# Point size of the font
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
;;
|
||||
;; They all accept either a font-spec, font string ("Input Mono-12"), or xlfd
|
||||
;; font string. You generally only need these two:
|
||||
(setq doom-font (font-spec :family "Victor Mono" :size 24 :weight 'bold :slant 'italic))
|
||||
(setq doom-font (font-spec :family "JetBrains Mono" :size 24 :weight 'bold :slant 'italic))
|
||||
|
||||
;; There are two ways to load a theme. Both assume the theme is installed and
|
||||
;; available. You can either set `doom-theme' or manually load a theme with the
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||
<fontconfig>
|
||||
<alias>
|
||||
<family>Victor Mono</family>
|
||||
<family>JetBrains Mono</family>
|
||||
<default>
|
||||
<family>monospace</family>
|
||||
</default>
|
||||
|
@ -10,7 +10,7 @@
|
|||
<alias>
|
||||
<family>monospace</family>
|
||||
<prefer>
|
||||
<family>Victor Mono</family>
|
||||
<family>JetBrains Mono</family>
|
||||
<family>Hack</family>
|
||||
</prefer>
|
||||
</alias>
|
||||
|
|
|
@ -7,7 +7,7 @@ login-shell=no
|
|||
# title=foot
|
||||
# locked-title=no
|
||||
|
||||
font=VictorMono-Regular:size=12
|
||||
font=JetBrains Mono-Regular:size=10
|
||||
# font-bold=<bold variant of regular font>
|
||||
# font-italic=<italic variant of regular font>
|
||||
# font-bold-italic=<bold+italic variant of regular font>
|
||||
|
|
|
@ -6,10 +6,10 @@
|
|||
#: individual font faces and even specify special fonts for particular
|
||||
#: characters.
|
||||
|
||||
font_family Victor Mono Bold
|
||||
bold_font Victor Mono Bold
|
||||
italic_font Victor Mono Bold Italic
|
||||
bold_italic_font Victor Mono Bold Italic
|
||||
font_family JetBrains Mono Medium Italic
|
||||
bold_font JetBrains Mono SemiBold
|
||||
italic_font JetBrains Mono Italic
|
||||
bold_italic_font JetBrains Mono SemiBold Italic
|
||||
|
||||
#: You can specify different fonts for the bold/italic/bold-italic
|
||||
#: variants. To get a full list of supported fonts use the `kitty
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
anchor=top-right
|
||||
font=Victor Mono Bold Italic
|
||||
font=JetBrains Mono Bold Italic
|
||||
default-timeout=0
|
||||
text-color=#ebdbb2
|
||||
border-color=#1d2021
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
font=Victor Mono
|
||||
font=JetBrains Mono
|
||||
font-size=14
|
||||
color=000000
|
||||
inside-color=282828
|
||||
|
|
|
@ -7,7 +7,7 @@ set statusbar-h-padding 0
|
|||
set statusbar-v-padding 0
|
||||
|
||||
set selection-clipboard clipboard
|
||||
set font "Victor Mono Bold Italic 14"
|
||||
set font "JetBrains Mono Medium 18"
|
||||
set default-bg "#262626" #00
|
||||
set default-fg "#ebdbb2" #01
|
||||
|
||||
|
|
Loading…
Reference in a new issue