-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode_settings.json
65 lines (65 loc) · 1.43 KB
/
vscode_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
{
"workbench.colorTheme": "Prism",
"files.autoSave": "afterDelay",
"tailwindCSS.includeLanguages": {
"javascript": "javascript",
"html": "HTML",
"plaintext": "rust",
"rust": "rust"
},
"tailwindCSS.experimental.classRegex": [
"class=\"([^\"]*)",
"class={\"([^\"}]*)",
"class=format!({\"([^\"}]*)"
],
"editor.quickSuggestions": {
"strings": true
},
"editor.inlineSuggest.enabled": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.formatOnSave": true,
"emmet.includeLanguages": {
"rust": "html"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "punctuation.brackets.angle.rust",
"settings": {
"foreground": "#da14da"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#b32bd2",
}
}
]
},
"rust-analyzer.check.command": "clippy",
"editor.fontFamily": "'Fira Code'",
"rust-analyzer.procMacro.ignored": {
"leptos_macro": [
"server",
"component"
],
},
"emeraldwalk.runonsave": {
"commands": [
{
"cmd": "~/.cargo/bin/leptosfmt '${file}'",
"match": "\\.rs$"
}
]
},
"files.autoSaveDelay": 5000,
"errorLens.enabledDiagnosticLevels": [
"error",
"info"
],
"git.confirmSync": false,
"git.autofetch": true,
"editor.inlayHints.fontSize": 13
}