Browse Source
Merge pull request #86 from pjkundert/master
Merge pull request #86 from pjkundert/master
Handle tabs better, convert all prelude-*-hooks to follow run-hooks conventioncustom
18 changed files with 123 additions and 51 deletions
-
2init.el
-
16modules/prelude-c.el
-
8modules/prelude-clojure.el
-
8modules/prelude-coffee.el
-
4modules/prelude-common-lisp.el
-
14modules/prelude-editor.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