dotfiles/emacs/.emacs.d/config/handwriting.el

15 lines
280 B
EmacsLisp
Raw Normal View History

2021-05-12 15:05:04 +00:00
;; -*- 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)