Configure Ediff to use a single frame and split windows horizontally
This commit is contained in:
@@ -90,6 +90,7 @@ git clone https://github.com/jamescherti/minimal-emacs.d ~/.emacs.d
|
|||||||
|
|
||||||
10. **Miscellaneous**
|
10. **Miscellaneous**
|
||||||
- Configure recentf, savehist, and auto-save
|
- Configure recentf, savehist, and auto-save
|
||||||
|
- Configure Ediff to use a single frame and split windows horizontally
|
||||||
|
|
||||||
## Update
|
## Update
|
||||||
|
|
||||||
|
|||||||
6
init.el
6
init.el
@@ -336,6 +336,12 @@
|
|||||||
;; Avoid automatic frame resizing when adjusting settings.
|
;; Avoid automatic frame resizing when adjusting settings.
|
||||||
(setq global-text-scale-adjust-resizes-frames nil)
|
(setq global-text-scale-adjust-resizes-frames nil)
|
||||||
|
|
||||||
|
;;; Ediff
|
||||||
|
|
||||||
|
;; Configure Ediff to use a single frame and split windows horizontally
|
||||||
|
(setq ediff-window-setup-function #'ediff-setup-windows-plain
|
||||||
|
ediff-split-window-function #'split-window-horizontally)
|
||||||
|
|
||||||
;;; Load post-init.el
|
;;; Load post-init.el
|
||||||
(minimal-emacs-load-user-init "post-init.el")
|
(minimal-emacs-load-user-init "post-init.el")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user