diff options
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index d8584cc..855d8c2 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,10 +1,8 @@ -((nil . ((eval . (progn - (add-to-list - 'load-path - (expand-file-name - "contrib/emacs" - (locate-dominating-file default-directory "contrib/emacs"))) - (require 'mintage-mode))))) +((csv-mode . ((number-format-predicate + . (lambda (beg end) + (save-excursion + (goto-char beg) + (not (bolp))))))) (go-ts-mode . ((comment-start . "/* ") (comment-end . " */") (comment-continue . " ") |