Skip to content

Instantly share code, notes, and snippets.

@maruks
Created September 30, 2012 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maruks/3806957 to your computer and use it in GitHub Desktop.
Save maruks/3806957 to your computer and use it in GitHub Desktop.
Load custom emacs 24 theme with no confirmation
(defun l0ad-theme (name)
(interactive
(list
(intern (completing-read "Load custom theme: "
(mapcar 'symbol-name (custom-available-themes))))))
((load-theme name t)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment