Convert all prelude-*-mode-hooks into actual hooks (allow add-hook)

This commit is contained in:
Perry Kundert 2012-02-27 12:50:28 -07:00
parent cc2836c4f6
commit 04b1fe44c3
17 changed files with 111 additions and 49 deletions
personal

18
personal/example_el Normal file
View file

@ -0,0 +1,18 @@
;; example_el -- Rename to example.el to activate, and restart emacs
;; Here are some examples of how to override the defaults for the
;; various prelude-emacs settings. To *append* to any of the
;; configurations attached to prelude-*-hooks, you can attach a
;; function to the appropriate hook:
(add-hook 'prelude-prog-mode-hook
(lambda ()
(prelude-turn-off-whitespace)
(remove-hook 'before-save-hook 'whitespace-cleanup)) t)
;; For other global settings, just run the appropriate function; all
;; personal/*.el files will be evaluate after prelude-emacs is loaded.
(global-hl-line-mode -1)
(blink-cursor-mode t)