doomemacs/init/defuns/hooks.el

10 lines
223 B
EmacsLisp
Raw Normal View History

2014-09-05 17:08:40 -04:00
(defun enable-hard-wrap()
2014-09-20 16:54:04 -04:00
(auto-fill-mode 1))
2014-09-05 17:08:40 -04:00
(defun enable-comment-hard-wrap ()
(set (make-local-variable 'comment-auto-fill-only-comments) t)
2014-09-20 16:54:04 -04:00
(auto-fill-mode 1))
2014-09-05 17:08:40 -04:00
2014-09-20 16:54:04 -04:00
(defun enable-tab-width-2 ()
(setq tab-width 2))