https://github.com/feelpp/feelpp
Raw File
Tip revision: c2649b992c0c4b170a2a2ab19cdadc98457f9fd7 authored by Christophe Prud'homme on 03 January 2014, 09:08:53 UTC
Merge branch 'release/v0.96.0'
Tip revision: c2649b9
.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 .
    (
      (subdirs . nil)
      (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 .
    (
      (subdirs . nil)
      (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