Raw File
;; -*- emacs-lisp -*-
((nil .
  (
    (tab-width . 4)
    (indent-tabs-mode . nil)
    (fill-column . 80)
    (user-company . "Université de Grenoble")
    (user-mail-address . "christophe.prudhomme@ujf-grenoble.fr")
    (debian-changelog-mailing-address . "christophe.prudhomme@ujf-grenoble.fr")
    ))
(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)))
(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))))

back to top