summaryrefslogtreecommitdiff
path: root/.dir-locals.el
blob: ad047f745cf6fed4fe3e6d8408dee3cc792c802d (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 . 4)
         (fill-column . 80)))
 (c-mode . ((c-tab-always-indent . nil)
            (c-basic-offset . 4)))
 (c++-mode . ((c-tab-always-indent . nil)
              (c-basic-offset . 4))))