10 lines
287 B
EmacsLisp
10 lines
287 B
EmacsLisp
(defun enable-hard-wrap()
|
|
(auto-fill-mode 1)
|
|
(diminish 'auto-fill-function))
|
|
|
|
(defun enable-comment-hard-wrap ()
|
|
(set (make-local-variable 'comment-auto-fill-only-comments) t)
|
|
(auto-fill-mode 1)
|
|
(diminish 'auto-fill-function))
|
|
|
|
(defun enable-tab-width-2 () (setq tab-width 2))
|