blob: 20191b921f5574eb8ea30672f61c2676422bc5dd (
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 . (add-hook 'mhtml-mode-hook (lambda () (auto-fill-mode -1)))))))
|