diff options
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index e942583..02fbd7a 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,6 +1,9 @@ ;;; 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")))) +((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.."))))) |