diff options
author | Jesús <heckyel@hyperbola.info> | 2019-08-08 22:41:55 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-08-08 22:41:55 -0500 |
commit | 05ce75574168d955118b1fcd01452dc8da06cc08 (patch) | |
tree | 2c09ea83450558a0bac3ba52da86272e1f4da506 /modules | |
parent | 6cb8ede5f67e1260b929981a62aaebeb62287335 (diff) | |
download | emacs-personal-05ce75574168d955118b1fcd01452dc8da06cc08.tar.lz emacs-personal-05ce75574168d955118b1fcd01452dc8da06cc08.tar.xz emacs-personal-05ce75574168d955118b1fcd01452dc8da06cc08.zip |
Added missing smartparens package
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 |