GNU Emacs config from video: Leaving Doom For GNU Emacs

This commit is contained in:
Derek Taylor
2021-04-15 23:53:01 -05:00
parent f1596e7e3d
commit b5a6f444e0
2 changed files with 11 additions and 7 deletions

View File

@@ -227,13 +227,13 @@ Defining our fonts.
** Setting The Font Face
#+begin_src emacs-lisp
(set-face-attribute 'default nil
:font "JetBrains Mono 11"
:font "Mononoki Nerd Font 11"
:weight 'medium)
(set-face-attribute 'variable-pitch nil
:font "Ubuntu Nerd Font 11"
:weight 'medium)
(set-face-attribute 'fixed-pitch nil
:font "JetBrains Mono 11"
:font "Mononoki Nerd Font 11"
:weight 'medium)
;; Makes commented text italics (working in emacsclient but not emacs)
(set-face-attribute 'font-lock-comment-face nil
@@ -246,7 +246,7 @@ Defining our fonts.
(setq-default line-spacing 0.12)
;; Needed if using emacsclient. Otherwise, your fonts will be smaller than expected.
(add-to-list 'default-frame-alist '(font . "JetBrains Mono 11"))
(add-to-list 'default-frame-alist '(font . "Mononoki Nerd Font 11"))
;; changes certain keywords to symbols, such as lamda!
(setq global-prettify-symbols-mode t)
#+end_src