My personal VS Code settings and extensions.
Make sure you have VS Code's code
command installed in your PATH. To install it, open VS Code and run Shell Command: Install 'code' command in PATH
from the Command Palette.
The following scripts help you manage your VS Code settings and extensions.
To symlink settings from the backup to your user settings file location, run:
./link
Warning
This script will overwrite your existing settings.
To back up your currently installed extensions to the extensions
file, run:
./dump_extensions [-i|--insiders]
Options:
-i
,--insiders
: Use VS Code Insiders instead of stable VS Code.
To install extensions listed in the extensions
file, run:
./install_extensions [-n|--dry-run] [-i|--insiders]
Options:
-n
,--dry-run
: Preview changes without applying them.-i
,--insiders
: Use VS Code Insiders instead of stable VS Code.
To uninstall extensions not listed in the extensions
file, run:
./prune_extensions [-n|--dry-run] [-i|--insiders]
Options:
-n
,--dry-run
: Preview changes without applying them.-i
,--insiders
: Use VS Code Insiders instead of stable VS Code.