aboutsummaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
blob: 17bf4b636cc6689fbffe379ebdf408cbc341854e (plain) (blame)
1
2
3
4
5
6
7
8
9
;; Project-wide Emacs settings
(
 ;; `nil' settings apply to all language modes
 (nil
  ;; Use only spaces for indentation
  (indent-tabs-mode . nil))
 (c-mode
  ;; In C code, indentation is four spaces
  (c-basic-offset . 4)))