-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpie_chart.code-workspace
41 lines (41 loc) · 1.1 KB
/
pie_chart.code-workspace
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
{
"settings": {
"editor.codeLens": true,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.codeLens": true,
},
"[json]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "vscode.json-language-features"
},
"[html]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "vscode.html-language-features"
},
"rust-analyzer.linkedProjects": [
"./Cargo.toml",
],
"editor.tabSize": 4,
"workbench.tree.indent": 20,
//"editor.formatOnPaste": true,
// "editor.formatOnSave": true,
"rust-analyzer.showUnlinkedFileNotification": false,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 16,
"editor.fontWeight": "400",
"editor.fontLigatures": "'calt', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'zero', 'onum'",
"workbench.colorTheme": "Catppuccin Mocha",
"workbench.iconTheme": "catppuccin-mocha",
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations": {
"tree.indentGuidesStroke": "#008070",
},
"workbench.list.horizontalScrolling": true,
},
"folders": [
{
"path": "."
}
]
}