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
19 lines
430 B
;;; plugin-smartparens --- Summary
|
|
;;; Commentary:
|
|
|
|
|
|
;;; Code:
|
|
|
|
(use-package smartparens
|
|
:ensure t
|
|
:diminish smartparens-mode
|
|
:init
|
|
(smartparens-global-mode)
|
|
(show-smartparens-global-mode)
|
|
:config
|
|
(smartparens-global-strict-mode)
|
|
(require 'smartparens-config))
|
|
|
|
(provide 'plugin-smartparens)
|
|
|
|
;;; plugin-smartparens ends here
|