Skip to content

Instantly share code, notes, and snippets.

@guehara
Created August 24, 2012 03:40
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 guehara/3445212 to your computer and use it in GitHub Desktop.
Save guehara/3445212 to your computer and use it in GitHub Desktop.
minor-mode-alistから長すぎるのを削る
; abbrevとか長すぎる
(setcar (cdr (assq 'abbrev-mode minor-mode-alist)) " Ab")
; Flymakeも短く
(add-hook 'flymake-mode-hook
(lambda ()
(setcar (cdr (assq 'flymake-mode minor-mode-alist)) " Fly")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment