mirror of https://github.com/bqv/weechat-xmpp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.4 KiB
EmacsLisp
23 lines
1.4 KiB
EmacsLisp
;;; Directory Local Variables
|
|
;;; For more information see (info "(emacs) Directory Variables")
|
|
|
|
((c-mode
|
|
(eval . (setq-local flycheck-clang-include-path
|
|
(list (expand-file-name "libstrophe" (projectile-project-root))
|
|
(expand-file-name "json-c" (projectile-project-root)))))
|
|
(eval . (setq-local company-clang-arguments
|
|
(list (concat "-I" (expand-file-name "libstrophe" (projectile-project-root)))
|
|
(concat "-I" (expand-file-name "json-c" (projectile-project-root))))))
|
|
(eval . (setq-local tags-table-list (expand-file-name ".git/tags" (projectile-project-root))))
|
|
(eval . (setq-local gud-gdb-command-name
|
|
(string-join `("gdb"
|
|
"-ex 'handle SIGPIPE nostop noprint pass'"
|
|
,(concat "--args weechat -a -P 'alias,buflist,exec,irc' -r '/plugin load "
|
|
(expand-file-name "xmpp.so" (projectile-project-root))
|
|
"'; /debug tags"))
|
|
" ")))
|
|
(flycheck-clang-warnings . ("all" "extra" "error-implicit-function-declaration" "no-missing-field-initializers"))
|
|
(flycheck-clang-language-standard . "gnu99")
|
|
(flycheck-checker . c/c++-clang)
|
|
(projectile-project-compilation-cmd . "bear -- make -j8")))
|