blob: 1e8b181ea815265a6ddbb1ef151c0f5d20383099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;;; Directory Local Variables -*- no-byte-compile: t -*-
;;; For more information see (info "(emacs) Directory Variables")
((nil . ((projectile-project-compilation-cmd . "make")
(projectile-project-configure-cmd . "make clean")
(+license/license-choice . "GPLv2")))
(c-mode . ((flycheck-gcc-include-path . (".."))
(flycheck-clang-include-path . (".."))
(company-clang-arguments . ("-I.."))
(eval . (clang-format-mode t))))
(c++-mode . ((flycheck-gcc-include-path . (".."))
(flycheck-clang-include-path . (".."))
(company-clang-arguments . ("-I.."))
(eval . (clang-format-mode t)))))
|