summaryrefslogtreecommitdiff
path: root/.dir-locals.el
blob: 3bdca176be8a9be20cd19df3f365ac8d41e04db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
((nil . ((indent-tabs-mode . t)
	 (tab-width . 8)
	 (show-trailing-whitespace . t)))
 (prog-mode .
	    ((c-file-style . "linux")))
 (cmake-mode .
	     ((cmake-tab-width . 8)))
 (python-mode .
	      ((indent-tabs-mode . nil)
	       (tab-width . 4)))
 )