-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
44 lines (40 loc) · 1.06 KB
/
coc-settings.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"rust.unstable_features": true,
"rust.build_on_save": true,
"rust.all_features": true,
"rust.clippy_preference": "on",
"coc.preferences.formatOnSaveFiletypes": [
"rust",
"java"
],
"clangd.path": "~/.config/coc/extensions/coc-clangd-data/install/15.0.6/clangd_15.0.6/bin/clangd",
"java.import.maven.enabled": true,
"java.completion.enabled": true,
"java.format.enabled": true,
"java.completion.importOrder": [
"java",
"javax",
"com",
"org"
],
"java.format.settings.url": "/home/jmt/.config/coc/extensions/node_modules/redhat.java/eclipse-formatter.xml",
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "/usr/lib/jvm/java-17-openjdk-17.0.3.0.7-1.fc36.x86_64"
}],
"languageserver": {
"terraform": {
"command": "terraform-ls",
"args": ["serve"],
"filetypes": [
"terraform",
"tf"
],
"initializationOptions": {},
"settings": {}
}
},
"python.linting.mypyEnabled": true,
"python.linting.pylintEnabled": true
}