.dir-locals.el 521 B

123456789101112131415
  1. ;; The GNU project defaults. These are also the GNU Emacs defaults.
  2. ;; Re-asserting theme here, however, as a courtesy for setups that use
  3. ;; a global override.
  4. ((nil . ((fill-column . 72)
  5. (tab-width . 8)))
  6. ;; For writing GNU C code, see
  7. ;; https://www.gnu.org/prep/standards/html_node/Writing-C.html
  8. (c-mode . ((c-file-style . "gnu")
  9. (indent-tabs-mode . nil)))
  10. ;; *OVERRIDE* to ... what is used while refactoring?
  11. (c-mode . ((c-file-style . "linux")
  12. (indent-tabs-mode . t))))