-
Notifications
You must be signed in to change notification settings - Fork 1
/
coc-settings.json
107 lines (107 loc) · 2.57 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"suggest.autoTrigger": "none",
"suggest.noselect": true,
"html.autoClosingTags": false,
"html.autoCreateQuotes": false,
"diagnostic.enable": true,
"python.pythonPath": "/usr/bin/python",
"highlight.disableLanguages": ["text"],
"list.height": 100,
"pyright.inlayHints.variableTypes": false,
"zig.enabled": true,
"zig.startUpMessage": true,
"zig.path": "~/.zls/zls",
"colors.enable": true,
"highlight.trace": "verbose",
"zig.debugLog": false,
"codeLens.enable": true,
"elixir.pathToElixirLS": "~/.elixir-ls/release/language_server.sh",
"languageserver": {
"vala": {
"command": "vala-language-server",
"filetypes": ["vala", "genie"]
},
"cs": {
"command": "csharp-ls",
"filetypes": ["cs"]
},
"javascript": {
"implentationsCodeLens": {
"enabled": false
},
"referencesCodeLens": {
"enabled": false,
"showOnAllFunctions": false
}
},
"typescript": {
"implentationsCodeLens": {
"enabled": false
},
"referencesCodeLens": {
"enabled": false,
"showOnAllFunctions": false
}
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
"racket": {
"command": "racket",
"args": ["--lib", "racket-langserver"],
"filetypes": ["racket"],
"ignoredRootPaths": ["~"]
},
"raku": {
"command": "node ~/src/RakuNavigator/server/out/server.js --stdio",
"filetypes": ["raku", "rakumod", "rakudoc", "rakutest", "t", "pl6", "pm6", "p6", "t6"]
}
},
"Lua.diagnostics.globals": [
"ProgramPort",
"DecodeBase64",
"EncodeBase64",
"EncodeJson",
"EncodeLua",
"EncodeUrl",
"EscapePath",
"FormatIp",
"GetCryptoHash",
"GetLastModifiedTime",
"GetLogLevel",
"GetPass",
"GetRandomBytes",
"GetTime",
"GetUser",
"GetZipPaths",
"LaunchBrowser",
"LoadAsset",
"ParseHttpDateTime",
"ParseUrl",
"ProgramHeartbeatInterval",
"ProgramLogPath",
"ServeAsset",
"ServeIndex",
"argon2",
"kLogDebug",
"kLogError",
"kLogInfo",
"kLogVerbose",
"kLogWarn",
"runSchedule",
"unix",
"lsqlite3"
],
"typescript.referencesCodeLens.enabled": true,
"typescript.implementationsCodeLens.enabled": true,
"typescript.referencesCodeLens.showOnAllFunctions": false,
"tsserver": {
"enable": true,
"log": "verbose",
"importModuleSpecifier": "relative",
"autoImportSuggestions.enabled": true
}
}