17 lines
688 B
EmacsLisp
17 lines
688 B
EmacsLisp
|
|
;;; Directory Local Variables -*- no-byte-compile: t -*-
|
||
|
|
;;; See AGENTS.md -> "Coding Style" for the rationale.
|
||
|
|
;;;
|
||
|
|
;;; The canonical style is cc-mode "stroustrup" with tabs enabled: 4 columns per
|
||
|
|
;;; level, tabs 8 columns wide, so depth 1 is four spaces, depth 2 is one tab,
|
||
|
|
;;; depth 3 is a tab plus four spaces. A correctly formatted file is a fixed
|
||
|
|
;;; point of `indent-region' under these settings.
|
||
|
|
;;;
|
||
|
|
;;; Reindent a whole file with C-x h C-M-\, or the tree with
|
||
|
|
;;; `scripts/reindent.sh'.
|
||
|
|
|
||
|
|
((c-mode . ((c-file-style . "stroustrup")
|
||
|
|
(indent-tabs-mode . t)
|
||
|
|
(tab-width . 8)
|
||
|
|
(fill-column . 100)
|
||
|
|
(require-final-newline . t))))
|