diff options
Diffstat (limited to '.dir-locals.el')
| -rw-r--r-- | .dir-locals.el | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 855d8c2..054f242 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,10 +1,13 @@ -((csv-mode . ((number-format-predicate - . (lambda (beg end) - (save-excursion - (goto-char beg) - (not (bolp))))))) - (go-ts-mode . ((comment-start . "/* ") - (comment-end . " */") - (comment-continue . " ") - (require-final-newline . t))) - (mhtml-mode . ((fill-column . 79))))
\ No newline at end of file +((csv-mode + (number-format-predicate + . (lambda (beg end) + (save-excursion + (goto-char beg) + (not (bolp)))))) + (go-ts-mode + (comment-start . "/* ") + (comment-end . " */") + (comment-continue . " ") + (require-final-newline . t)) + (mhtml-mode + (eval . (auto-fill-mode -1))))
\ No newline at end of file |