Files
blis/.dir-locals.el
Dave Love 531110c339 Modify Emacs config
Confine it to cc-mode and add comment-start/end.
2019-10-02 10:16:22 +01:00

10 lines
343 B
EmacsLisp

;; First (minimal) attempt at configuring Emacs CC mode for the BLIS
;; layout requirements.
((c-mode . ((c-file-style . "stroustrup")
(c-basic-offset . 4)
(comment-start . "// ")
(comment-end . "")
(indent-tabs-mode . t)
(tab-width . 4)
(parens-require-spaces . nil))))