-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoc-settings.json
86 lines (81 loc) · 2.29 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
{
"suggest.autoTrigger": "none",
"coc.preferences.currentFunctionSymbolAutoUpdate": true,
"[css]": {
"coc.preferences.formatOnSave": true
},
"cSpell.enabledLanguageIds": ["markdown", "plaintext", "text"],
"diagnostic.displayByAle": false,
"diagnostic.enable": false,
"languageserver": {
"golang": {
"command": "gopls",
"filetypes": ["go"],
"initializationOptions": {
"usePlaceholders": true
},
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"]
},
"ocaml": {
"command": "ocamllsp",
"filetypes": ["ocaml"]
"initializationOptions": {"inlayHints": false}
}
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
"rootPatterns": [".ccls-root", ".git/"],
"initializationOptions": {
// "cache": {
// "directory": "/tmp/ccls"
// },
"capabilities": {
"foldingRangeProvider": false,
"workspace": {
"workspaceFolders": {
"supported": false
}
}
},
"clang":{"extraArgs": ["--gcc-toolchain=/usr"]},
"completion": {
"detailedLabel": true,
"placeholder": true
},
"client": {
"snippetSupport": true
},
"index": {
"onChange": false,
"initialNoLinkage": true,
"threads": 2,
"initialBlacklist": ["/(test|unittests)/"]
}
}
}
// "ccls": {
// "command": "ccls",
// "filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"],
// "rootPatterns": [".ccls", "compile_commands.json", ".git/", ".hg/"],
// "initializationOptions": {
// "cache": {
// "directory": "/tmp/ccls"
// }
// }
// }
},
"ruff.autoFixOnSave": true,
// "ruff.nativeServer": true,
"ruff.lint.args": ["--select", "I"]
"ruff.enableExperimentalFormatter": true,
"pyright.enable": true,
"python.formatting.provider": "none",
"python.linting.enabled": false,
"pyright.inlayHints.variableTypes": false,
"pyright.inlayHints.parameterTypes": false,
"snippets.ultisnips.pythonPrompt": false,
"typescript.showUnused": false
// "vimlsp.debug": false,
// "vimlsp.diagnostic.enable": true
}
// vim:ft=jsonc