summaryrefslogtreecommitdiff
path: root/.dir-locals.el
blob: f6665e6c2498ce8ae6bbd1929b559576e6bd622c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(
 (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")))
)