-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-settings.jsonc
31 lines (31 loc) · 1.1 KB
/
vscode-settings.jsonc
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
{
"editor.fontSize": 14,
"terminal.integrated.fontSize": 14,
// Berkeley Mono Trial, Fira Code Retina, JetBrains Mono
"editor.fontFamily": "JetBrains Mono",
// "editor.fontWeight": "400",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"window.zoomLevel": 0.2,
"workbench.colorTheme": "Catppuccin Macchiato",
"workbench.tree.indent": 18,
// we try to make semantic highlighting look good
"editor.semanticHighlighting.enabled": true,
// prevent VSCode from modifying the terminal colors
"terminal.integrated.minimumContrastRatio": 1,
// make the window's titlebar use the workbench colors
"window.titleBarStyle": "custom",
"catppuccin.accentColor": "green",
"catppuccin.italicKeywords": false,
"catppuccin.italicComments": false,
"catppuccin.boldKeywords": true,
"workbench.iconTheme": "catppuccin-macchiato",
"editor.inlayHints.enabled": "off",
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
"editor.minimap.enabled": false,
"kotlin.languageServer.enabled": false,
"kotlin.debugAdapter.enabled": false
}