Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
{
// Reduce editor font, terminal font and minimize UI chrome for a compact coding view
// Increase font and reset zoom for readability
"editor.fontSize": 18,
"terminal.integrated.fontSize": 16,
"window.zoomLevel": 1,
"editor.lineHeight": 28,
// Compact workspace: reduce editor and terminal fonts and UI zoom
"editor.fontSize": 12,
"editor.fontFamily": "Consolas, 'Courier New', monospace",
"minimap.enabled": false,

// Terminal and markdown preview sizes
"terminal.integrated.fontSize": 12,
"markdown.preview.fontSize": 13,
"[markdown]": {
"editor.fontSize": 13
},

// Slightly reduce overall UI scale to fit a half-screen layout
"window.zoomLevel": -1,
"editor.lineHeight": 20,
"workbench.statusBar.visible": true,
"workbench.sideBar.location": "left"
}
Loading