mirror of
https://github.com/amd/blis.git
synced 2026-04-20 07:38:53 +00:00
10 lines
343 B
EmacsLisp
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))))
|