How to add more indentation in the Visual Studio code explorer file tree structure?

Go to File > Preference > Settings and choose: Workbench › Tree: Indent Controls tree indentation in pixels. or (in your settings.json enter this directly) “workbench.tree.indent”: 10 and choose a high enough number for you. Also see my answer at Visual Studio code sidebar Vertical guideline (customize sidebar) where with v1.36 you can add colorized … Read more

How can I export settings?

With the current version of Visual Studio Code as of this writing (1.22.1), you can find your settings in ~/.config/Code/User on Linux (in my case, an, Ubuntu derivative) %APPDATA%\Code\User (C:\Users\username\AppData\Roaming\Code\User) on Windows ~/Library/Application Support/Code/User/ on Mac OS X (thank you, Christophe De Troyer) The files are settings.json and keybindings.json. Simply copy them to the target … Read more

How to exclude folder from “Explore” tab?

Use files.exclude: Go to File -> Preferences -> Settings (or on Mac Code -> Preferences -> Settings) Pick the workspace settings tab Add this code to the settings.json file displayed on the right side: // Place your settings in this file to overwrite default and user settings. { “settings”: { “files.exclude”: { “**/.git”: true, // … Read more