Last active
August 8, 2020 10:10
-
-
Save ogatatsu/a1fca8de1cd32845d0ad82e5cd853faa 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":"2020-08-08T10:10:20.923Z","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": "b689fcc8-d494-4dbf-a228-2c694a578afc", | |
"publisherId": "alefragnani.Bookmarks", | |
"publisherDisplayName": "alefragnani" | |
}, | |
"name": "Bookmarks", | |
"publisher": "alefragnani", | |
"version": "11.3.1" | |
}, | |
{ | |
"metadata": { | |
"id": "5a6e2b21-1d61-4acd-b31b-907f9c23f18a", | |
"publisherId": "CoenraadS.bracket-pair-colorizer-2", | |
"publisherDisplayName": "CoenraadS" | |
}, | |
"name": "bracket-pair-colorizer-2", | |
"publisher": "CoenraadS", | |
"version": "0.2.0" | |
}, | |
{ | |
"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": "690b692e-e8a9-493f-b802-8089d50ac1b2", | |
"publisherId": "ms-vscode.cpptools", | |
"publisherDisplayName": "ms-vscode" | |
}, | |
"name": "cpptools", | |
"publisher": "ms-vscode", | |
"version": "0.30.0-insiders" | |
}, | |
{ | |
"metadata": { | |
"id": "4de763bd-505d-4978-9575-2b7696ecf94e", | |
"publisherId": "eamodio.gitlens", | |
"publisherDisplayName": "eamodio" | |
}, | |
"name": "gitlens", | |
"publisher": "eamodio", | |
"version": "10.2.2" | |
}, | |
{ | |
"metadata": { | |
"id": "cc7d2112-5178-4472-8e0e-25dced95e7f0", | |
"publisherId": "ms-vscode.hexeditor", | |
"publisherDisplayName": "ms-vscode" | |
}, | |
"name": "hexeditor", | |
"publisher": "ms-vscode", | |
"version": "1.2.1" | |
}, | |
{ | |
"metadata": { | |
"id": "63c2dc61-783f-4cbc-9fb8-0c75aeb0527c", | |
"publisherId": "ZixuanWang.linkerscript", | |
"publisherDisplayName": "ZixuanWang" | |
}, | |
"name": "linkerscript", | |
"publisher": "ZixuanWang", | |
"version": "1.0.1" | |
}, | |
{ | |
"metadata": { | |
"id": "6cf182b2-70cf-433e-97f2-45f414c9ad89", | |
"publisherId": "platformio.platformio-ide", | |
"publisherDisplayName": "platformio" | |
}, | |
"name": "platformio-ide", | |
"publisher": "platformio", | |
"version": "1.10.0" | |
}, | |
{ | |
"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.44.4" | |
}, | |
{ | |
"metadata": { | |
"id": "9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a", | |
"publisherId": "vscode-icons-team.vscode-icons", | |
"publisherDisplayName": "vscode-icons-team" | |
}, | |
"name": "vscode-icons", | |
"publisher": "vscode-icons-team", | |
"version": "10.2.0" | |
}, | |
{ | |
"metadata": { | |
"id": "077515fe-1509-49c0-9dcc-5511b41682fc", | |
"publisherId": "MS-CEINTL.vscode-language-pack-ja", | |
"publisherDisplayName": "MS-CEINTL" | |
}, | |
"name": "vscode-language-pack-ja", | |
"publisher": "MS-CEINTL", | |
"version": "1.48.1" | |
} | |
] |
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": "shift+enter", | |
"command": "extension.jumpy-word", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "Escape", | |
"command": "extension.jumpy-exit", | |
"when": "editorTextFocus && jumpy.isJumpyMode" | |
} | |
]} |
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
{ | |
"files.trimTrailingWhitespace": true, | |
"editor.formatOnPaste": true, | |
"sync.gist": "a1fca8de1cd32845d0ad82e5cd853faa", | |
"sync.quietSync": false, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"sync.autoDownload": true, | |
"sync.autoUpload": true, | |
"sync.forceDownload": false, | |
"git.autofetch": true, | |
"C_Cpp.clang_format_sortIncludes": true, | |
"files.trimFinalNewlines": true, | |
"files.insertFinalNewline": true, | |
"editor.showFoldingControls": "always", | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.cursorBlinking": true, | |
"gitlens.views.lineHistory.location": "gitlens", | |
"gitlens.views.compare.location": "gitlens", | |
"gitlens.views.search.location": "gitlens", | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.menus": false, | |
"gitlens.mode.statusBar.alignment": "left", | |
"gitlens.views.compare.enabled": false, | |
"gitlens.views.search.enabled": false, | |
"gitlens.views.lineHistory.enabled": false, | |
"gitlens.hovers.enabled": false, | |
"gitlens.codeLens.scopes": [ | |
"document", | |
"containers" | |
], | |
"gitlens.codeLens.enabled": false, | |
"gitlens.recentChanges.highlight.locations": [ | |
"gutter", | |
"line", | |
"overview" | |
], | |
"gitlens.statusBar.enabled": false, | |
"workbench.iconTheme": "vscode-icons", | |
"sync.forceUpload": false, | |
"C_Cpp.updateChannel": "Insiders", | |
"platformio-ide.disablePIOHomeStartup": true, | |
"editor.minimap.enabled": false, | |
"editor.highlightActiveIndentGuide": false, | |
"editor.renderLineHighlight": "all", | |
"bracket-pair-colorizer-2.highlightActiveScope": true, | |
"terminal.integrated.fontSize": 13, | |
"git.suggestSmartCommit": false, | |
"vsicons.dontShowNewVersionMessage": true, | |
"workbench.editor.scrollToSwitchTabs": true, | |
"timeline.pageSize": 10, | |
"window.zoomLevel": 0, | |
"explorer.confirmDelete": false, | |
"platformio-ide.activateOnlyOnPlatformIOProject": true, | |
"editor.fontSize": 13, | |
"editor.fontFamily": "'JetBrains Mono NL', Consolas, 'Courier New', monospace", | |
"editor.tabSize": 2, | |
"C_Cpp.clang_format_style": "{ BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 2, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -2, NamespaceIndentation: All }", | |
"editor.mouseWheelScrollSensitivity": 2 | |
} |
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 snippets for C++ here. Each snippet is defined under a snippet name and has a prefix, body and | |
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
// same ids are connected. | |
// Example: | |
"Print to console": { | |
"prefix": "log", | |
"body": [ | |
"console.log('$1');", | |
"$2" | |
], | |
"description": "Log output to console" | |
} | |
*/ | |
"Print to serial": { | |
"prefix": "sp", | |
"body": [ | |
"Serial.println(\"$1\");" | |
], | |
"description": "Log output to serial" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment