VSCode: Add line numbers config

This commit is contained in:
t0xa 2025-09-19 15:08:51 +03:00
parent 40577ea5c6
commit a369502b87

View file

@ -7,7 +7,17 @@
"breadcrumbs.enabled": false,
"editor.fontFamily": "JetBrains Mono, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.fontSize": 16,
"editor.fontWeight": "normal",
"editor.lineHeight": 1.5
"editor.lineHeight": 1.5,
"editor.lineNumbers": "relative",
"vim.statusBarColorControl": true,
"workbench.colorCustomizations": {
"statusBar.background": "#005f5f",
"statusBar.noFolderBackground": "#005f5f",
"statusBar.debuggingBackground": "#005f5f",
"statusBar.foreground": "#ffffff",
"statusBar.debuggingForeground": "#ffffff"
}
}