emacs: Add /* */ pair to evil-surround

This commit is contained in:
madmaurice 2018-07-16 11:02:25 +02:00
parent a12fb60c72
commit 623f101049

View file

@ -374,7 +374,10 @@
:ensure t
:demand t
:config
(global-evil-surround-mode t))
(global-evil-surround-mode t)
(add-hook 'c++-mode-hook (lambda ()
(push '(?/ . ("/*" . "*/"))
evil-surround-pairs-alist))))
(use-package projectile
:ensure t