summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 00000000..f71d12d4
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,17 @@
+(
+ (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 . ("/\\.git$"
+ "/\\..*cache$"
+ ;; autotools content
+ "/\\.deps$"
+ "/autom4te\\.cache$"
+ "/build-aux$"
+ ;; make-specific content
+ "/doc/manual$"
+ "/tests/work$"
+ "/make-[0-9]"))
+ ))
+)