Add Ediff configuration

This commit is contained in:
Tom Willemse 2016-10-14 01:16:24 +02:00
parent 4813d15f0e
commit 5d64560cec
2 changed files with 43 additions and 0 deletions

View file

@ -942,6 +942,12 @@ To start off, first I need to enable lexical binding.
(with-eval-after-load 'magit (load "magit-init")) (with-eval-after-load 'magit (load "magit-init"))
#+END_SRC #+END_SRC
- [[file:init/ediff-init.org][Ediff]] :: A reall diff application.
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'ediff (load "ediff-init"))
#+END_SRC
** Gnus ** Gnus
Gnus is one of the most extensible Email programs on the Gnus is one of the most extensible Email programs on the

View file

@ -0,0 +1,37 @@
#+TITLE: Ediff
Don't use a special frame for the ediff control buffer.
#+BEGIN_SRC emacs-lisp
(setq ediff-window-setup-function 'ediff-setup-windows-plain)
#+END_SRC
Show the different buffers next to eachother instead of underneath
eachother.
#+BEGIN_SRC emacs-lisp
(setq ediff-split-window-function 'split-window-horizontally)
#+END_SRC
Don't show whitespace changes in ediff buffers.
#+BEGIN_SRC emacs-lisp
(setq ediff-diff-options "-w")
#+END_SRC
Show ediff in a fullscreen frame.
#+BEGIN_SRC emacs-lisp
(defun oni:turn-on-fullscreen ()
(unless (memq (frame-parameter nil 'fullscreen)
'(fullscreen fullboth))
(set-frame-parameter nil 'fullscreen 'fullboth)))
(defun oni:turn-off-fullscreen ()
(when (memq (frame-parameter nil 'fullscreen)
'(fullscreen fullboth))
(set-frame-parameter nil 'fullscreen nil)))
(add-hook 'ediff-mode-hook 'oni:turn-on-fullscreen)
(add-hook 'ediff-cleanup-hook 'oni:turn-off-fullscreen)
#+END_SRC