-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcoc-settings.json
More file actions
31 lines (31 loc) · 1.17 KB
/
coc-settings.json
File metadata and controls
31 lines (31 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"coc.preferences.useQuickfixForLocations": true,
"coc.preferences.enableMessageDialog": true,
"suggest.snippetIndicator": "🍦",
"clojure-lsp.trace.server": "verbose",
"diagnostic.showUnused": true,
"diagnostic.showDeprecated": true,
"notification.border": false,
"languageserver": {
"clojure-lsp": {
// "command": "bash",
// "args": ["-c", "cd /Users/case/dev/lsp && clojure -J-Duser.dir=$PWD -Scp $(clj -Spath) -m clojure-lsp.main"],
// "args": ["-c", "export LEIN_JVM_OPTS=\"-Duser.dir=$cwd\" && cd /Users/case/dev/lsp/ && lein run"],
//"command": "bash",
//"args": ["-c", "cd /Users/case/dev/lsp/cli && clj -M:run"],
"command": "clojure-lsp",
//"command": "/Users/snoe/dev/clojure-lsp/clojure-lsp",
"filetypes": ["clojure"],
"rootPatterns": ["project.clj", "deps.edn"],
"additionalSchemes": ["jar", "zipfile"],
"trace.server": "verbose",
"progressOnInitialization": true,
"diagnostic.showUnused": true,
"diagnostic.showDeprecated": true,
"diagnostic.highlightPriority": 1000000,
"initializationOptions": {
"ignore-classpath-directories": true
}
}
}
}