summaryrefslogtreecommitdiff
path: root/.dir-locals.el
blob: 4b5393198de12c7c47ab685bb8a1c1ebeaf48f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
((prog-mode
  (indent-tabs-mode . nil)
  (tab-width . 8)
  (c-basic-offset . 3)
  (c-file-style . "stroustrup")
  (fill-column . 78)
  (eval . (progn
	    (c-set-offset 'case-label '0)
	    (c-set-offset 'innamespace '0)
	    (c-set-offset 'inline-open '0)))
  )
 (makefile-mode (indent-tabs-mode . t))
 )