You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
430 B

  1. ;;; plugin-smartparens --- Summary
  2. ;;; Commentary:
  3. ;;; Code:
  4. (use-package smartparens
  5. :ensure t
  6. :diminish smartparens-mode
  7. :init
  8. (smartparens-global-mode)
  9. (show-smartparens-global-mode)
  10. :config
  11. (smartparens-global-strict-mode)
  12. (require 'smartparens-config))
  13. (provide 'plugin-smartparens)
  14. ;;; plugin-smartparens ends here