-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
34 lines (34 loc) · 1.17 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
{
"suggest.noselect": false,
"suggest.enablePreselect": false,
"snippets.priority": 100,
"snippets.ultisnips.pythonPrompt": false,
"vimlsp.trace.server": "verbose",
"vimlsp.debug": true,
//coc
"coc.preferences.extensionUpdateCheck": "weekly",
"[c][cpp][python][rust][julia][lua]": {
"coc.preferences.formatOnType": true,
"coc.preferences.formatOnSave": true,
},
//python
"python.formatting.provider": "ruff",
//rust
"rust-analyzer.server.path": "~/.cargo/bin/rust-analyzer",
"rust-analyzer.cargo.unsetTest": [
"derivative"
],
"rust-analyzer.inlayHints.typeHints": true,
"rust-analyzer.inlayHints.refreshOnInsertMode": true,
//lua
"sumneko-lua.inlayHints.refreshOnInsertMode": true,
"Lua.completion.callSnippet": "Replace",
"Lua.telemetry.enable": true,
// powershell
"powershell.integratedConsole.focusConsoleOnExecute": false,
"powershell.integratedConsole.showOnStartup": false,
"powershell.enableProfileLoading": false,
"powershell.developer.editorServicesLogLevel": "Error",
"powershell.debugging.createTemporaryIntegratedConsole": false,
// c-family
}