-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
94 lines (91 loc) · 3.18 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
{
"languageserver": {
"vala": {
"command": "vala-language-server",
"filetypes": ["vala", "genie"]
},
"c3": {
"filetypes": ["c3"],
"command": "c3lsp",
"rootPatterns": ["c3lsp.json"]
},
"sourcekit-lsp": {
"filetypes": ["swift"],
"command": "sourcekit-lsp",
"rootPatterns": ["Package.swift"]
},
"csharp-ls": {
"command": "csharp-ls",
"filetypes": ["cs"],
"rootPatterns": ["*.csproj", ".hg/", "*.sln"],
"trace.server": "verbose"
},
"v-analyzer": {
"command": "v-analyzer",
"filetypes": ["vlang"],
"rootPatterns": ["v.mod", "build.vsh"]
},
//"v-analyzer": {
//"port": "1145",
//"filetypes": ["vlang"],
//"rootPatterns": ["v.mod", "build.vsh"],
//"trace.server": "verbose"
//},
"serve-d": {
"command": "serve-d",
"filetypes": ["d"],
"trace.server": "on",
"rootPatterns": ["dub.json", "dub.sdl"]
},
"typst": {
"command": "typst-lsp",
"filetypes": ["typst"]
},
"glsl": {
"command": "glsl_analyzer",
"filetypes": ["glsl"]
},
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": [".stack.yaml", ".hie-bios", "BUILD.bazel", "cabal.config", "package.yaml", "*.cabal"],
"filetypes": [
"hs", "lhs", "haskell", "lhaskell"
]
}
},
"clangd.path": "/opt/homebrew/opt/llvm/bin/clangd",
"clangd.trace.server": "verbose",
"clangd.arguments": ["-header-insertion=never"],
"inlayHint.enable": true,
"inlayHint.display": false,
"semanticTokens.enable": false,
"java.import.gradle.java.home": "/opt/homebrew/Cellar/openjdk@11/11.0.25/libexec/openjdk.jdk/Contents/Home",
"java.import.gradle.version": "8.5",
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.updates.checkOnStartup": false,
"rust-analyzer.server.path": "/Users/onion27/.cargo/bin/rust-analyzer",
"coc.preferences.extensionUpdateCheck": "daily",
"diagnostic.locationlistUpdate": true,
"diagnostic.virtualText": true,
"diagnostic.virtualTextPrefix": "■ ",
"diagnostic.virtualTextCurrentLineOnly": false,
"kotlin.languageServer.transport": "stdio",
"zig.path": "~/apps/bin/zls",
"zig.enabled": true,
"solargraph.transport": "stdio",
"solargraph.commandPath": "/opt/homebrew/lib/ruby/gems/3.3.0/bin/solargraph",
"powershell.integratedConsole.showOnStartup": false,
"Lua.semantic.enable": false,
"deno.enable": true,
"deno.inlayHints.parameterNames.enabled": "literals",
"deno.inlayHints.variableTypes.enabled": true,
"deno.inlayHints.functionLikeReturnTypes.enabled": true,
"java.imports.gradle.wrapper.checksums": [
{
"sha256": "e2b82129ab64751fd40437007bd2f7f2afb3c6e41a9198e628650b22d5824a14",
"allowed": true
}
],
"d.config.dubCompiler": "ldc2"
}