Compare commits

..
1 Commits
Author SHA1 Message Date
taylskid a89f5191e5 set up smartparens during gerbil config 2020-11-25 20:55:32 -05:00
+6 -7
View File
@@ -66,13 +66,12 @@ Each entry is either:
(defun gerbil/init-gerbil-mode ()
(use-package gerbil-mode
:defer t
:demand t
:config
(progn
(with-eval-after-load 'smartparens
(add-to-list 'sp--lisp-modes 'gerbil-mode)
(when (fboundp 'sp-local-pair)
(sp-local-pair 'gerbil-mode "'" nil :actions nil)
(sp-local-pair 'gerbil-mode "`" nil :actions nil))))))
(with-eval-after-load 'smartparens
(add-to-list 'sp--lisp-modes 'gerbil-mode)
(when (fboundp 'sp-local-pair)
(sp-local-pair 'gerbil-mode "'" nil :actions nil)
(sp-local-pair 'gerbil-mode "`" nil :actions nil)))))
;;; packages.el ends here