General clean up

This commit is contained in:
Henrik Lissner 2016-01-30 21:16:10 -05:00
parent 2d29ee9034
commit 550d5b7218
11 changed files with 20 additions and 204 deletions

View file

@ -65,8 +65,9 @@
(blink-cursor-mode 1) ; do blink cursor
(tooltip-mode -1) ; show tooltips in echo area
(when (featurep 'eldoc)
(global-eldoc-mode -1)) ; on by default in Emacs 25?
;; on by default in Emacs 25
(when (and (featurep 'eldoc) (>= emacs-major-version 25))
(global-eldoc-mode -1))
;; Highlight line
(add-hook! (prog-mode puml-mode markdown-mode) 'hl-line-mode)
@ -152,7 +153,6 @@
(hl-line-mode (if rainbow-mode -1 1)))))
(use-package volatile-highlights
:when (not EMACS-WRITE)
:config
(vhl/define-extension 'my-undo-tree-highlights
'undo-tree-undo 'undo-tree-redo)