Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
656 B

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