17 changed files with 111 additions and 49 deletions
-
2init.el
-
16modules/prelude-c.el
-
8modules/prelude-clojure.el
-
8modules/prelude-coffee.el
-
4modules/prelude-common-lisp.el
-
16modules/prelude-emacs-lisp.el
-
8modules/prelude-haskell.el
-
6modules/prelude-js.el
-
6modules/prelude-latex.el
-
8modules/prelude-lisp.el
-
6modules/prelude-org.el
-
6modules/prelude-perl.el
-
20modules/prelude-programming.el
-
8modules/prelude-python.el
-
18modules/prelude-ruby.el
-
2modules/prelude-scheme.el
-
18personal/example_el
@ -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) |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue