Skip to content

Instantly share code, notes, and snippets.

@joelmccracken
Created March 18, 2016 17:41
Show Gist options
  • Save joelmccracken/6baa540cb2ce26a30a5c to your computer and use it in GitHub Desktop.
Save joelmccracken/6baa540cb2ce26a30a5c to your computer and use it in GitHub Desktop.
(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