How do I change the font size for the file explorer in Visual Studio Code? There is not an option in the settings.json file.
Type CTRL+SHIFT+P inside your VSCODE window and type/select "Open Settings (JSON)"
If you find the default font settings tiny (very much like I do), inside the curly brackets type:
"editor.fontSize": 16,
"terminal.integrated.fontSize": 14,
"window.zoomLevel": 1.4,
Try changing the sizes until it works for you