diff options
-rw-r--r-- | .dir-locals.el | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 7577762..054f242 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,13 +1,13 @@ ((csv-mode - ((number-format-predicate - . (lambda (beg end) - (save-excursion - (goto-char beg) - (not (bolp))))))) + (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))) + (comment-start . "/* ") + (comment-end . " */") + (comment-continue . " ") + (require-final-newline . t)) (mhtml-mode - ((eval . (auto-fill-mode -1)))))
\ No newline at end of file + (eval . (auto-fill-mode -1))))
\ No newline at end of file |