doomemacs/init/defuns/hooks.el
2014-09-20 16:54:04 -04:00

9 lines
223 B
EmacsLisp

(defun enable-hard-wrap()
(auto-fill-mode 1))
(defun enable-comment-hard-wrap ()
(set (make-local-variable 'comment-auto-fill-only-comments) t)
(auto-fill-mode 1))
(defun enable-tab-width-2 ()
(setq tab-width 2))