summaryrefslogtreecommitdiff
path: root/.dir-locals.el
blob: 31a7ea718a8186afa0669f108a5c2835c6fb7eb3 (plain)
1
2
3
4
5
6
7
8
9
10
;;; This file is used by Emacs to configure it's code editing modes to correctly
;;; indent cbootimage style source code.

((nil      . ((indent-tabs-mode . t)
              (tab-width        . 8)
              (fill-column      . 80)))

 (c-mode   . ((c-basic-offset . 8)))

 (c++-mode . ((c-basic-offset . 8))))