From eb6dbd95c2dc1ec704e130da009e88a4e9d3e3d8 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 13 Jan 2018 14:57:08 +0100 Subject: [PATCH] =?UTF-8?q?[Init]=20No=20need=20to=20check=20for=20lispy?= =?UTF-8?q?=20in=20=E2=80=98minibuffer-setup-hook=E2=80=99=20anymore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ‘conditionally-enable-lispy’ will do it --- init.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/init.el b/init.el index 7862c49..eea709f 100644 --- a/init.el +++ b/init.el @@ -129,8 +129,7 @@ ;; Global Hooks - (when (package-installed-p 'lispy) - (add-hook 'minibuffer-setup-hook #'conditionally-enable-lispy)) + (add-hook 'minibuffer-setup-hook #'conditionally-enable-lispy) (add-hook 'minibuffer-setup-hook #'cursor-intangible-mode) (add-hook 'after-save-hook #'executable-make-buffer-file-executable-if-script-p) (add-hook 'text-mode-hook #'turn-on-auto-fill)