Bind keys to rescale text

This commit is contained in:
Jeremy Dormitzer 2021-04-15 15:26:56 -04:00
parent d98ce82424
commit 3bfcbd3451

View File

@ -26,4 +26,13 @@
(delete-dups (font-family-list)))))
(set-frame-font font))
(defun text-scale-reset ()
(interactive)
(text-scale-increase 0))
(general-def
"C-c +" #'text-scale-increase
"C-c -" #'text-scale-decrease
"C-c 0" #'text-scale-reset)
(provide 'init-ui)