1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

feat(emacs): use jetbrains font

This commit is contained in:
Ryan Kes 2020-12-02 13:17:08 +01:00
parent 69346a9911
commit ad5cb0f6f8

View File

@ -39,10 +39,10 @@
** Variable font sizes depending on screen width. Set font to [[https://sourcefoundry.org/hack/][Hack]]. ** Variable font sizes depending on screen width. Set font to [[https://sourcefoundry.org/hack/][Hack]].
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defun set-font (font-size bigfont-size) (defun set-font (font-size bigfont-size)
(setq doom-font (font-spec :family "Hack Nerd Font Mono" :size font-size)) (setq doom-font (font-spec :family "JetBrainsMono Nerd Font" :size font-size))
(setq doom-big-font (font-spec :family "Hack Nerd Font Mono" :size bigfont-size)) (setq doom-big-font (font-spec :family "JetBrainsMono Nerd Font" :size bigfont-size))
(setq doom-variable-pitch-font (font-spec :family "Liberation Sans" :size font-size)) (setq doom-variable-pitch-font (font-spec :family "Noto Sans" :size font-size))
(setq doom-serif-font (font-spec :family "Liberation Serif" :size font-size)) (setq doom-serif-font (font-spec :family "Noto Serif" :size font-size))
(setq doom-unicode-font (font-spec :family "JoyPixels")) (setq doom-unicode-font (font-spec :family "JoyPixels"))
) )