diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/init-smartparens.el | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/init-smartparens.el b/modules/init-smartparens.el new file mode 100644 index 0000000..efbbe2d --- /dev/null +++ b/modules/init-smartparens.el @@ -0,0 +1,18 @@ +;;; init-smartparens.el --- .Emacs Configuration -*- lexical-binding: t -*- +;;; Commentary: +;; + +;;; Code: +;; smartparens +(use-package smartparens + :ensure t + :config + (setq sp-show-pair-from-inside nil) + (require 'smartparens-config) + :diminish smartparens-mode) + +(provide 'init-smartparens) +;; Local Variables: +;; byte-compile-warnings: (not free-vars) +;; End: +;;; init-smartparens.el ends here |