By the way I just noticed the README specifies the coding style in .custom.emacs
(defconst ivan-style
'((c-offsets-alist . ((substatement-open . 0)
(label . /)
(access-label . /)
(case-label . 1)
(statement-case-intro . 1)
(brace-list-open . 0)
(statement-cont . c-lineup-math)
(inline-open . 0)
(member-init-intro . 0)
(arglist-close . 0)
(substatement . 2)
(defun-block-intro . 2)
(statement-block-intro . 2)
(statement-case-open . *))))
"The Standard IVAN Programming Style")
(add-hook 'c-mode-common-hook 'ivan-mode-common-hook)
(autoload 'c++-mode "cc-mode" "Major mode for editing C++ code." t)
(defun ivan-mode-common-hook ()
;; add style and set it for the current buffer
(c-add-style "IVAN" ivan-style t))