From 3bf4faf855b9749d14838f572d6e3b20414235ed Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Fri, 28 Jul 2017 17:24:43 +0100 Subject: [PATCH] Emacs: Refactor and comment around splitting and eldoc --- .emacs.d/lisp/main.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.emacs.d/lisp/main.el b/.emacs.d/lisp/main.el index fb55b683..896527b3 100644 --- a/.emacs.d/lisp/main.el +++ b/.emacs.d/lisp/main.el @@ -136,8 +136,8 @@ ;;; Enforce horizontal splitting. 140 means that the window is large enough to ;;; hold 2 other windows of 70 columns. -(setq split-height-threshold nil) -(setq split-width-threshold 140) +(setq split-height-threshold nil + split-width-threshold 140) ;;; Windmove mode ;; By default, it allows easy window switching with Shift+arrows. I like to @@ -294,6 +294,7 @@ ;;; Eldoc: Disable if too distracting. ;; (global-eldoc-mode 0) +;; (setq eldoc-idle-delay 0.1) ; Could be even more distracting. ;;; Replace `kill-buffer' binding by `kill-this-buffer'. (global-set-key (kbd "C-x k") 'kill-this-buffer)