From b1acea6827f82c3f7c7f5a8e929329728a065739 Mon Sep 17 00:00:00 2001 From: Maik Fischer Date: Sun, 29 Oct 2017 14:12:32 +0100 Subject: [PATCH] add .dir-locals.el and .clang-complete --- .clang_complete | 5 +++++ .dir-locals.el | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .clang_complete create mode 100644 .dir-locals.el diff --git a/.clang_complete b/.clang_complete new file mode 100644 index 0000000..5c112e1 --- /dev/null +++ b/.clang_complete @@ -0,0 +1,5 @@ +-I/usr/share/cc65/include +-Iinclude +-nostdlibinc +-nobuiltininc +-D__fastcall__='' diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..2cdd487 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,5 @@ +((nil . ()) + (c-mode . ((c-basic-offset . 2) + (indent-tabs-mode . nil) + (flycheck-clang-include-path . ("/usr/share/cc65/include")) + (flycheck-clang-language-standard . "c99")))) -- 2.39.5