Fix unicode font

This commit is contained in:
Sravan Balaji
2022-07-01 18:58:42 -04:00
parent cf8cc5aebf
commit c8012f6106
2 changed files with 4 additions and 2 deletions

View File

@@ -329,7 +329,8 @@ Set regular, variable pitch, and big fonts.
#+BEGIN_SRC emacs-lisp :tangle config.el
(setq doom-font (font-spec :family "VictorMono Nerd Font" :size 14)
doom-variable-pitch-font (font-spec :family "Ubuntu Nerd Font" :size 14)
doom-big-font (font-spec :family "VictorMono Nerd Font" :size 24))
doom-big-font (font-spec :family "VictorMono Nerd Font" :size 24)
doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 14))
#+END_SRC
Enable *bold* and /italic/ text.

View File

@@ -4,7 +4,8 @@
(setq doom-font (font-spec :family "VictorMono Nerd Font" :size 14)
doom-variable-pitch-font (font-spec :family "Ubuntu Nerd Font" :size 14)
doom-big-font (font-spec :family "VictorMono Nerd Font" :size 24))
doom-big-font (font-spec :family "VictorMono Nerd Font" :size 24)
doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 14))
(after! doom-themes
(setq doom-themes-enable-bold t