-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoc-settings.json
More file actions
32 lines (32 loc) · 823 Bytes
/
coc-settings.json
File metadata and controls
32 lines (32 loc) · 823 Bytes
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
{
"coc.preferences.formatOnSave": true,
"coc.preferences.formatOnType": true,
"flutter.lsp.initialization.closingLabels": true,
"rust-analyzer.enable": true,
"languageserver": {
"rust": {
"command": "rust-analyzer",
"filetypes": ["rust"],
"rootPatterns": ["Cargo.toml"]
},
"coc-clangd": {
"command": "clangd",
"rootPatterns": ["compile_flags.txt", "compile_commands.json"],
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"]
},
"tailwindcss": {
"command": "tailwindcss-language-server",
"args": ["--stdio"],
"filetypes": [
"html",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"vue",
"svelte"
]
}
},
"snippets.ultisnips.pythonPrompt": false
}