From 51998df6ee45093d10feaf40ad2803e0201b4a4d Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Wed, 23 Dec 2020 17:17:10 -0500 Subject: [PATCH] [emacs] Add comic mono font --- .doom.d/config.org | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.doom.d/config.org b/.doom.d/config.org index 9549c33..293542b 100644 --- a/.doom.d/config.org +++ b/.doom.d/config.org @@ -32,6 +32,20 @@ version of the [[https://github.com/edwardtufte/et-book][Edward Tufte book font] :hook ((org-mode markdown-mode rst-mode) . mixed-pitch-mode)) (setq doom-variable-pitch-font (font-spec :family "ETBookOT" :size 19)) #+end_src +** Comic Sans Mono +Why not, it's fun 🤣 + +https://dtinth.github.io/comic-mono-font/ + +#+begin_src emacs-lisp + (defun my/buffer-face-comic-mono () + (interactive) + (setq buffer-face-mode-face '(:family "Comic Mono")) + (buffer-face-mode)) + + (after! php-mode + (add-hook 'php-mode-hook #'my/buffer-face-comic-mono)) +#+end_src * Dashboard #+begin_src emacs-lisp (defun my/choice (&rest things)