Last active
July 15, 2021 03:11
-
-
Save mizzao/a488dbe5beeda143eb35f7eb91714f6c to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2021-02-23T20:44:09.529Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "Shan.code-settings-sync", | |
"publisherDisplayName": "Shan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "3.4.3" | |
}, | |
{ | |
"metadata": { | |
"id": "f0c5397b-d357-4197-99f0-cb4202f22818", | |
"publisherId": "ms-vscode-remote.remote-wsl", | |
"publisherDisplayName": "ms-vscode-remote" | |
}, | |
"name": "remote-wsl", | |
"publisher": "ms-vscode-remote", | |
"version": "0.53.4" | |
}, | |
{ | |
"metadata": { | |
"id": "a42d3dd1-f528-407c-a110-d5e35c7ca4c2", | |
"publisherId": "fivethree.vscode-svelte-snippets", | |
"publisherDisplayName": "fivethree" | |
}, | |
"name": "vscode-svelte-snippets", | |
"publisher": "fivethree", | |
"version": "0.5.0" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "ctrl+s", | |
"command": "workbench.action.files.saveAll" | |
}, | |
{ | |
"key": "alt+left", | |
"command": "workbench.action.navigateBack" | |
}, | |
{ | |
"key": "alt+right", | |
"command": "workbench.action.navigateForward" | |
}, | |
// Move between terminals (only when on terminal) | |
{ | |
"key": "ctrl+pagedown", | |
"command": "workbench.action.terminal.focusNext", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+pageup", | |
"command": "workbench.action.terminal.focusPrevious", | |
"when": "terminalFocus" | |
}, | |
// Toggle between terminal and editor focus | |
// https://stackoverflow.com/a/43012779/586086 | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.terminal.focus" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
// Clear terminal properly while keeping chords elsewhere | |
// https://stackoverflow.com/questions/50569100/vscode-how-to-make-ctrlk-kill-till-the-end-of-line | |
{ | |
"key": "ctrl+k", | |
"command": "deleteAllRight", | |
"when": "terminalFocus" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Empty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
// Controls the font size in pixels. | |
// "editor.fontSize": 12, | |
// The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on. | |
"editor.tabSize": 2, | |
"[python]": { | |
"editor.rulers": [79], | |
"editor.tabSize": 4 | |
}, | |
// The default end of line character. Use \n for LF and \r\n for CRLF. | |
"files.eol": "\n", | |
"files.trimTrailingWhitespace": true, | |
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the files.exclude setting. | |
"search.exclude": { | |
"**/.meteor/local": true, | |
"**/node_modules": true, | |
"**/bower_components": true | |
}, | |
// Reveal files that are already open | |
"workbench.editor.revealIfOpen": true, | |
// "terminal.integrated.fontSize": 12, | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\bash.exe", | |
"sync.gist": "a488dbe5beeda143eb35f7eb91714f6c", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.forceDownload": false, | |
"sync.quietSync": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[svelte]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"todo-tree.tree.showScanModeButton": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there a possibility to sync custom prettier config?