- https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh
- https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig will read
.editorconfig
files so that your per-project indentation settings are respected - https://marketplace.visualstudio.com/items?itemName=rebornix.toggle will let you toggle settings (or several) with a keystroke
- https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml
- https://marketplace.visualstudio.com/items?itemName=jamesmaj.easy-icons
- https://marketplace.visualstudio.com/items?itemName=earshinov.permute-lines will let you sort and uniq lines
- https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
- https://marketplace.visualstudio.com/items?itemName=sysoev.vscode-open-in-github
- Rust
- JavaScript, TypeScript
- https://marketplace.visualstudio.com/items?itemName=anuraghazra.strip-ts-copy to copy TypeScript to clipboard without the types
- https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
- Svelte, SvelteKit
For documentation on all these settings and their default values, refer to https://code.visualstudio.com/docs/getstarted/settings
Only the first section here ("Higher-confidence settings") can be copied without alteration. The other sections require reading and maybe making changes.
Don't copy anything from here without thinking about it and testing.
[
// The idea here isn't necessarily to use these exact shortcuts, but to assign
// keys you can comfortably press with one hand for the most frequently-used commands.
// I used alt-x (command palette) and alt-q (file switcher) because I was already
// used to having these in Emacs and my customized Sublime Text.
{"key": "alt+x", "command": "workbench.action.showCommands"},
{"key": "ctrl+shift+p", "command": "-workbench.action.showCommands"},
{"key": "alt+q", "command": "workbench.action.quickOpen"},
{"key": "ctrl+e", "command": "-workbench.action.quickOpen"},
{"key": "ctrl+shift+l", "command": "editor.action.insertCursorAtEndOfEachLineSelected", "when": "editorTextFocus"},
{"key": "shift+alt+i", "command": "-editor.action.insertCursorAtEndOfEachLineSelected", "when": "editorTextFocus"},
{"key": "alt+left", "command": "workbench.action.navigateBack"},
{"key": "ctrl+alt+-", "command": "-workbench.action.navigateBack"},
{"key": "alt+\\", "command": "workbench.action.navigateToLastEditLocation"},
{"key": "ctrl+k ctrl+q", "command": "-workbench.action.navigateToLastEditLocation"},
{"key": "alt+right", "command": "workbench.action.navigateForward"},
{"key": "ctrl+shift+-", "command": "-workbench.action.navigateForward"},
{"key": "ctrl+q", "command": "-workbench.action.quickOpenView"},
{"key": "ctrl+q", "command": "workbench.action.quit"},
{"key": "ctrl+m", "command": "magit.status"},
{"key": "alt+x g", "command": "-magit.status"},
// The toggle commands below require Peng Lv's 'Toggle' extension.
// https://marketplace.visualstudio.com/items?itemName=rebornix.toggle
// Key binding to toggle inlay hints. This is probably the only toggle you might want to copy.
{
"key": "alt+e",
"command": "toggle",
"when": "editorTextFocus",
"args": {
"id": "inlayHints",
"value": [
{"editor.inlayHints.enabled": "on"},
{"editor.inlayHints.enabled": "off"}
]
}
},
// Example for switching between a monospace and variable-width font.
{
"key": "alt+d",
"command": "toggle",
"args": {
"id": "Cycle font",
"value": [
{
"editor.fontSize": 14,
"editor.lineHeight": 16,
"editor.fontFamily": "Inter Display",
"editor.tabSize": 6,
},
{
"editor.fontSize": 12,
"editor.lineHeight": 13,
"editor.fontFamily": "PragmataPro Mono",
"editor.tabSize": 4,
},
]
}
},
// Example for switching many settings with one keystroke, if you use e.g. SyncThing to
// sync your vscode settings, but need some settings to be different on two machines.
{
"key": "ctrl+alt+m",
"command": "toggle",
"args": {
"id": "Settings for other machine",
"value": [
// desktop
{
"editor.fontSize": 12,
"editor.lineHeight": 13,
"editor.mouseWheelScrollSensitivity": 0.53,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#0000",
"activityBarBadge.foreground": "#cccc",
"editor.background": "#111",
"editor.findMatchBackground": "#0000ff",
"editor.findMatchHighlightBackground": "#3a3ab3",
"editor.selectionBackground": "#446f"
},
},
// laptop
{
"editor.fontSize": 12,
"editor.lineHeight": 13,
"editor.mouseWheelScrollSensitivity": 1,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#0000",
"activityBarBadge.foreground": "#cccc",
"editor.background": "#000",
"editor.findMatchBackground": "#0000ff",
"editor.findMatchHighlightBackground": "#3a3ab3",
"editor.selectionBackground": "#446f"
},
},
]
}
},
]