-
Notifications
You must be signed in to change notification settings - Fork 1
/
coc-settings.json
34 lines (29 loc) · 1.14 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
{
"coc.preferences.formatOnSaveFiletypes": ["rust"],
"rust-analyzer.server.path": "/usr/bin/rust-analyzer",
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.cargo.loadOutDirsFromCheck": true,
"rust-analyzer.procMacro.enable": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "/usr/bin/flake8",
"python.formatting.provider":"black",
"python.formatting.blackPath": "/usr/bin/black",
"python.formatting.blackArgs": ["--experimental-string-processing"],
"git.enableGutters": true,
"latex.build.onSave": false,
"latex.build.args": ["-pdf", "-interaction=nonstopmode", "-synctex=1", "-pvc"],
"latex.forwardSearch.executable": "zathura",
"latex.forwardSearch.args": ["--synctex-forward", "%l:1:%f", "%p"],
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "objc", "objcpp"],
"rootPatterns": [".ccls", "compile_commands.json", ".git/"],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
}
}
}
}
}