User and Programming language specific config files, extension lists etc to
reproduce my current VSCode dev setup if needed. They may have some local path
settings etc in them which will need to be sanitised. Also, many of the settings
depend on having the same extensions installed as I do, from the
global.extensions.json.
- user-settings.json : Complete
Usersettings, for global use, to replace the existing main settings. - remote.settings.json :
Remotesettings for use in WSL or remote SSH sessions. - global.extensions.json : rename this to
extensions.jsonand place in the.vscodesubfolder. This will add all the listed extensions as suggestions when you next open VSCode in the parent directory of that folder. - keybindings.json : contains custom keybindings. Open the
keyboard shortcutsfrom the settings menu and replace with the contents of this file.
- .vscode-python : Settings specific to the Python
programming language. Rename folder as
.vscodeand place in your project folder. - .vscode-django : Settings specific to the Python Django
framework. Rename folder as
.vscodeand place in your project folder. [OUT OF DATE] - .vscode-react : Settings specific to the React programming
language. Rename folder as
.vscodeand place in your project folder. [OUT OF DATE]
- make-extension-config.py : A Python script to
make a
global.extensions.jsonfile from all the extensions currently loaded in your local VSCode installation. - make-extension-from-file.py : Similar script
that takes its input from a file
extensions.listin the current folder. This file can be created at the command line from your own system using the commandcode --list-extensions. TODO : This will be updated to take the filename as a command line parameter.