diff options
Diffstat (limited to '.dir-locals.el')
| -rw-r--r-- | .dir-locals.el | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index d8584cc..054f242 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,12 +1,13 @@ -((nil . ((eval . (progn - (add-to-list - 'load-path - (expand-file-name - "contrib/emacs" - (locate-dominating-file default-directory "contrib/emacs"))) - (require 'mintage-mode))))) - (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 |