https://github.com/feelpp/feelpp
Raw File
Tip revision: 7ef1046f21a652c24b9b3c2fe4aba3085018f1f6 authored by Christophe Prud'homme on 28 August 2014, 15:14:05 UTC
allow prefixing of gmsh domain descriptions and then customize with respect to
Tip revision: 7ef1046
.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