From 84a525a0996cd1a806c6838f15a8c3fc9ef4056a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 20 Feb 2020 21:36:04 -0500 Subject: [PATCH] Remove wrap, additional-wrap, & escape key themes + Escape was redundant with Doom's own escape handler + Disabled wrap/addition-wrap, as it isn't enabled by default, is potentially redundant with evil-{surround,embrace}, and prone to issues in tty emacs (see #2573). Fixes #2573 --- modules/editor/lispy/config.el | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/editor/lispy/config.el b/modules/editor/lispy/config.el index 0103f0cbe..f2860b816 100644 --- a/modules/editor/lispy/config.el +++ b/modules/editor/lispy/config.el @@ -13,6 +13,7 @@ (setq lispy-close-quotes-at-end-p t) (add-hook 'lispy-mode-hook #'turn-off-smartparens-mode)) + (use-package! lispyville :when (featurep! :editor evil) :hook (lispy-mode . lispyville-mode) @@ -23,8 +24,5 @@ (prettify insert) (atom-movement normal visual) slurp/barf-lispy - (wrap normal insert) additional - additional-insert - (additional-wrap normal insert) - (escape insert)))) + additional-insert)))