From 97cbb13c2293c0027b53bfe14ac69d4097eda63e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 31 May 2018 16:19:28 +0200 Subject: [PATCH] Improve which-key readability --- core/core-keybinds.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/core-keybinds.el b/core/core-keybinds.el index 3d9e1ed57..04417cdb0 100644 --- a/core/core-keybinds.el +++ b/core/core-keybinds.el @@ -51,11 +51,12 @@ If any hook returns non-nil, all hooks after it are ignored.") which-key-sort-uppercase-first nil which-key-add-column-padding 1 which-key-max-display-columns nil - which-key-min-display-lines 5 + which-key-min-display-lines 6 which-key-side-window-slot -10) ;; embolden local bindings (set-face-attribute 'which-key-local-map-description-face nil :weight 'bold) (which-key-setup-side-window-bottom) + (setq-hook! 'which-key-init-buffer-hook line-spacing 3) (add-hook 'doom-post-init-hook #'which-key-mode))