blob: 7c1d776a27c617af1cff0cbcb73cb6665d12cbd5 (
plain)
1
2
3
4
5
|
;; Smartparens is a package for LISP editing that helps with parentheses paralysis
;;; https://github.com/Fuco1/smartparens
(use-package smartparens)
(require 'smartparens-config)
(add-hook 'prog-mode-hook 'smartparens-mode)
|