https://github.com/feelpp/feelpp
Raw File
Tip revision: d61659ef5793d06067c72d7c70cf9fb86b4bdb7a authored by Christophe Prud'homme on 22 May 2014, 11:49:03 UTC
Merge branch 'release/v0.98.0'
Tip revision: d61659e
.dir-locals.el
;; -*- emacs-lisp -*-
(
  (nil .
    (
      (tab-width . 4)
      (indent-tabs-mode . nil)
      (fill-column . 80)
      (user-company . "Feel++ Consortium")
      (user-mail-address . "christophe.prudhomme@feelpp.org")
      (debian-changelog-mailing-address . "christophe.prudhomme@feelpp.org")
      ))
  (c++-mode .
    (
      (indent-tabs-mode . nil)
      (tab-width . 4)
      (show-trailing-whitespace . t)
      (indicate-empty-lines . t)
      (c-basic-offset . 4)
      (c-set-offset 'innamespace  0)
      (add-hook 'write-file-functions 'delete-trailing-whitespace)
      ))
  (c-mode .
    (
      (indent-tabs-mode . nil)
      (tab-width . 4)
      (show-trailing-whitespace . t)
      (indicate-empty-lines . t)
      (c-basic-offset . 4)
      (c-set-offset 'innamespace  0)
      (add-hook 'write-file-functions 'delete-trailing-whitespace)
      ))
  )
back to top