-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvs-code.json
More file actions
43 lines (43 loc) · 1.46 KB
/
vs-code.json
File metadata and controls
43 lines (43 loc) · 1.46 KB
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
{
"editor.fontFamily": "'MonoLisa Variable', Monaco, 'Courier New', monospace",
"editor.fontLigatures": "'ss02' on",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
}
]
},
"editor.fontSize": 16,
"editor.fontWeight": 450,
"editor.fontVariations": true,
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "block",
"window.autoDetectHighContrast": false,
"workbench.preferredDarkColorTheme": "Visual Studio Dark",
"workbench.preferredHighContrastColorTheme": "Visual Studio Dark",
"workbench.preferredLightColorTheme": "Visual Studio Light",
"terminal.external.osxExec": "Alacritty",
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.fontSize": 14,
"telemetry.telemetryLevel": "off",
"editor.accessibilitySupport": "off",
"rust-analyzer.check.command": "clippy",
"editor.formatOnSave": true,
"github-actions.remote-name": "main",
"[github-actions-workflow]": {
"editor.indentSize": 2
},
"workbench.colorTheme": "Night Owl Light",
"workbench.iconTheme": "material-icon-theme"
}