diff options
| author | Luke Hoersten <[email protected]> | 2015-11-11 10:13:23 -0600 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2015-11-11 10:13:23 -0600 |
| commit | 57943d3254073cb5381e8331c53d35c5ec3c7db5 (patch) | |
| tree | ed74f0e9c8d2e456ac95591ac05faaa5bea2b2de | |
| parent | ea55e13d20b638bfb576ab89eee24273cfdaa37a (diff) | |
Ediff better defaults.
| -rw-r--r-- | init.el | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -6,8 +6,6 @@ (setq-default gc-cons-threshold 20000000 ; gc every 20 MB allocated (form flx-ido docs) - ediff-split-window-function - 'split-window-horizontally ; diff horizontally inhibit-splash-screen t ; disable splash screen truncate-lines t ; truncate, not wrap, lines indent-tabs-mode nil ; only uses spaces for indentation @@ -37,6 +35,12 @@ (global-set-key (kbd "C-c g") 'rgrep) ; grep +;;; ediff +(setq-default + ediff-split-window-function 'split-window-horizontally + ediff-window-setup-function 'ediff-setup-windows-plain) + + ;;; Darwin (setq is-mac (equal system-type 'darwin)) (when is-mac @@ -217,6 +221,7 @@ js2-mode-hook html-mode-hook css-mode-hook + sass-mode-hook clojure-mode-hook emacs-lisp-mode-hook conf-mode-hook |
