From f98ee74a0f68f7819a2a03c29ecd4009c034985a Mon Sep 17 00:00:00 2001 From: David Florness Date: Sun, 3 Nov 2019 10:49:02 -0700 Subject: [PATCH] Move smartparens to setup-keys --- init.el | 8 -------- lisp/setup-keys.el | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/init.el b/init.el index 2c9b55f..496b1da 100644 --- a/init.el +++ b/init.el @@ -93,14 +93,6 @@ :init (setq markdown-command "markdown")) -;;; a minor mode for dealing with pairs -(use-package smartparens - :config - (progn - (require 'smartparens-config) - (smartparens-global-mode t))) - - ;;; magit: a Git Porcelain (use-package magit :bind diff --git a/lisp/setup-keys.el b/lisp/setup-keys.el index 38e1a13..6c1e32d 100644 --- a/lisp/setup-keys.el +++ b/lisp/setup-keys.el @@ -65,6 +65,14 @@ (kill-buffer))) +;;; a minor mode for dealing with pairs +(use-package smartparens + :config + (progn + (require 'smartparens-config) + (smartparens-global-mode t))) + + (use-package evil-matchit :init (progn -- 2.38.4