mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-24 12:19:02 +00:00
21 lines
812 B
EmacsLisp
21 lines
812 B
EmacsLisp
(
|
|
(nil . ((bug-reference-bug-regexp . "\\(\\bSV[- ]\\([0-9]+\\)\\)")
|
|
(bug-reference-url-format . "https://savannah.gnu.org/bugs/?%s")
|
|
(ccls-initialization-options
|
|
. (:index (:threads 6
|
|
:initialBlacklist ["/make-[0-9]" "tests/work/" "/\\.deps"
|
|
"/\\..*cache" "/\\.git"])))
|
|
(lsp-file-watch-ignored-directories
|
|
. ("[/\\\\]\\.git$"
|
|
"[/\\\\]\\..*cache$"
|
|
;; autotools content
|
|
"[/\\\\]\\.deps$"
|
|
"[/\\\\]autom4te\\.cache$"
|
|
"[/\\\\]build-aux$"
|
|
;; make-specific content
|
|
"[/\\\\]doc[/\\\\]manual$"
|
|
"[/\\\\]tests[/\\\\]work$"
|
|
"[/\\\\]make-[0-9]"))
|
|
))
|
|
(c-mode . ((c-file-style . "gnu")))
|
|
)
|