mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 19:19:28 +00:00
11 lines
345 B
EmacsLisp
11 lines
345 B
EmacsLisp
;; Git Gutter
|
|
(global-git-gutter-mode t)
|
|
|
|
(defadvice ediff-make-temp-file (before make-temp-file-suspend-ll
|
|
activate compile preactivate)
|
|
"Disable git-gutter when running ediff"
|
|
(global-git-gutter-mode 0))
|
|
|
|
(add-hook 'ediff-cleanup-hook
|
|
'(lambda ()
|
|
(global-git-gutter-mode t)))
|