summaryrefslogtreecommitdiff
path: root/rts/.dir-locals.el
blob: 9e13ffa6ba0101748a819cda40f6247661efe786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; Directory Local Variables
;;; See Info node `(emacs) Directory Variables' for more information.

;; Default mode settings: no tabs, 80 column, UTF8
((nil
  (indent-tabs-mode . nil)
  (fill-column . 80)
  (buffer-file-coding-system . utf-8-unix))

 ;; c-mode settings: 'Allman' BSD style, 4 space indents
 (c-mode
  (c-file-style . "BSD")
  (c-basic-offset . 4)))