Created
March 18, 2016 17:41
-
-
Save joelmccracken/6baa540cb2ce26a30a5c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun embiggen-steve () | |
(interactive) | |
(set-face-attribute 'default nil :height 170)) | |
(defun not-steve () | |
(interactive) | |
(set-face-attribute 'default nil :height 125)) | |
(global-set-key (kbd "s-e") 'embiggen-steve) | |
(global-set-key (kbd "s-E") 'not-steve) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment