aboutsummaryrefslogtreecommitdiffhomepage
path: root/.dir-locals.el
blob: 054f2422d5468b2b96cd5904f32e40e983edffd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
  (eval . (auto-fill-mode -1))))