-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
56 lines (56 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"languageserver": {
"bash": {
"command": "bash-language-server",
"args": [ "start" ],
"filetypes": [ "sh", "bash", "PKGBUILD" ]
},
"systemd-language-server": {
"command": "systemd-language-server",
"filetypes": ["systemd"]
}
},
"ltex.enabled": [
"bibtex",
"context",
"context.tex",
"html",
"latex",
"markdown",
"org",
"restructuredtext",
"rsweave",
"python",
"c",
"cpp",
"arduino",
"shellscript"
],
"ltex.dictionary": {
"en-US": [
":spell/en.utf-8.add"
]
},
"ltex.languageToolHttpServerUri": "http://localhost:8081/",
"ltex.completionEnabled": true,
"ltex.additionalRules.motherTongue": "en-US",
"pylsp.disableProgressNotifications": false,
"pylsp.plugins.ruff.enabled": false,
"pylsp.plugins.pycodestyle.maxLineLength": 88, //matches with Ruff defaults
"ruff.nativeServer": true,
"java.home": "/usr/lib/jvm/default/",
"diagnostic-languageserver.filetypes": {
"tiddlywiki": [ "proselint", "alex-text" ],
"tex": [ "proselint", "alex" ],
"latex": [ "proselint", "alex" ],
"markdown": [ "proselint", "alex" ],
"systemd": [ "systemd-analyze" ]
},
"diagnostic-languageserver.mergeConfig": true,
"diagnostic-languageserver.formatFiletypes": {
},
"diagnostic-languageserver.linters": {
},
"snippets.ultisnips.pythonPrompt": false,
"pydocstring.formatter": "numpy",
}