diff options
author | 2020-04-13 12:09:56 -0400 | |
---|---|---|
committer | 2020-04-13 12:09:56 -0400 | |
commit | 5750405c72761414854658f5f8b227cb9c16ee8f (patch) | |
tree | c69fbc112f4860a7ea51b2734818f7b0b905f9ab /init.el | |
parent | 39c1c07363abeeca1c13f257fdacf0eb0851ac1f (diff) | |
download | configs-5750405c72761414854658f5f8b227cb9c16ee8f.tar.gz configs-5750405c72761414854658f5f8b227cb9c16ee8f.tar.xz configs-5750405c72761414854658f5f8b227cb9c16ee8f.zip |
Assimilate diff-hl 1.8.7-10-ga625033
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -656,14 +656,16 @@ For disabling the behaviour for certain buffers and/or modes." ;;; Editing -(comment + ;; highlight uncommitted changes in the left fringe (use-package diff-hl :defer 0.6 :config (setq diff-hl-draw-borders nil) (global-diff-hl-mode) - :hook (magit-post-refresh . diff-hl-magit-post-refresh)) + :hook + ((magit-pre-refresh . diff-hl-magit-pre-refresh) + (magit-post-refresh . diff-hl-magit-post-refresh))) ;; display Lisp objects at point in the echo area (use-package eldoc @@ -735,6 +737,7 @@ For disabling the behaviour for certain buffers and/or modes." ;; (global-company-mode t) ) +(comment (use-package flycheck :defer 0.6 :hook (prog-mode . flycheck-mode) |