From b1b1edbcaf9494796fe42ee93c151a5dc934aa74 Mon Sep 17 00:00:00 2001 From: coolneng Date: Sun, 11 Sep 2022 22:53:50 +0200 Subject: [PATCH] Move smartparens config to +ui --- +ui.el | 2 ++ config.el | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/+ui.el b/+ui.el index 6b1dcc0..216f35a 100644 --- a/+ui.el +++ b/+ui.el @@ -38,3 +38,5 @@ (setq lsp-headerline-breadcrumb-enable nil)) ;; Shrink terminal buffer (set-popup-rule! "^\\*vterm" :size 0.1 :vslot -4 :select t :quit nil :ttl 0) +;; Show matching parenthesis on the minibuffer +(after! smartparens (show-smartparens-global-mode t)) diff --git a/config.el b/config.el index ba2a8e1..2ed1435 100644 --- a/config.el +++ b/config.el @@ -45,8 +45,6 @@ (message "No Compilation Errors!"))))) ;; Map leader key for major mode to , (setq doom-localleader-key ",") -;; Show matching parenthesis on the minibuffer -(after! smartparens (show-smartparens-global-mode t)) ;; Disable company mode in Nix (setq-hook! 'nix-mode-hook company-idle-delay nil) ;; Trigger flycheck after save