Have some fun with my handwriting font

This commit is contained in:
Jeremy Dormitzer 2021-05-12 11:05:04 -04:00
parent 2dbff50721
commit 271b9e4b57
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
;; -*- lexical-binding: t; -*-
;;;###autoload
(defface handwriting
'((t :family "Jeremy Sans"))
"A face with handwritten font")
;;;###autoload
(defun handwrite ()
"Make the buffer look handwritten"
(interactive)
(buffer-face-set 'handwriting))
(provide 'handwriting)

View File

@ -110,6 +110,7 @@
(require 'init-1pass)
(require 'init-wallabag)
(require 'init-lola)
(require 'handwriting)
(when (file-exists-p custom-file)
(load custom-file 'noerror 'nomessage))