-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcoc-settings.json
79 lines (79 loc) · 2.11 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"coc.preferences.formatOnSave": true,
"coc.preferences.formatOnType": true,
"coc.preferences.enableMarkdown": true,
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "objc", "objcpp"],
"rootPatterns": [
".ccls",
"build/compile_commands.json",
"compile_commands.json"
],
"initializationOptions": {
"cache": {
"directory": ".ccls-cache"
},
"client": {
"snippetSupport": true
},
"compilationDatabaseDirectory": "build"
}
},
"d": {
"module": "~/.serve-d/serve-d",
"args": ["--stdio"],
"filetypes": ["d"],
"trace.server": "verbose",
"rootPatterns": ["dub.json", "dub.sdl"],
"initializationOptions": {},
"settings": {}
},
"terraform": {
"command": "terraform-lsp",
"filetypes": ["terraform", "tf"],
"initializationOptions": {},
"settings": {}
},
"luau": {
"module": "/usr/bin/luau-lsp",
"args": ["lsp"],
"filetypes": ["luau"],
"trace.server": "verbose",
"rootPatterns": [],
"initializationOptions": {},
"settings": {}
}
},
"sumneko-lua.enable": true,
"sumneko-lua.enableNvimLuaDev": true,
"omnisharp.trace.server": "verbose",
"diagnostic.checkCurrentLine": true,
"eslint.packageManager": "npm",
"prettier.enable": true,
"prettier.embeddedLanguageFormatting": "auto",
"tsserver.log": "verbose",
"tsserver.trace.server": "verbose",
"elixirLS.dialyzerEnabled": true,
"elixirLS.mixEnv": "test",
"elixirLS.mixTarget": "test",
"elixirLS.suggestSpecs": true,
"solargraph.trace.server": "messages",
"solargraph.formatting": true,
"solargraph.logLevel": "debug",
"go.goplsOptions": {
"completeUnimported": true
},
"codeLens.enable": true,
"suggest.autoTrigger": "always",
"suggest.timeout": 1000,
"suggest.floatConfig": {
"rounded": true
},
"java.enabled": true,
"java.completion.enabled": true,
"java.format.enabled": true,
"java.server.launchMode": "Standard",
"java.project.importOnFirstTimeStartup": "automatic"
}