Skip to content

Instantly share code, notes, and snippets.

@neves
Last active April 23, 2018 13:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neves/88b4a8debadc6a139320716dcee88608 to your computer and use it in GitHub Desktop.
Save neves/88b4a8debadc6a139320716dcee88608 to your computer and use it in GitHub Desktop.
VSCode's Settings - Syncing
[
{
"id": "CoenraadS.bracket-pair-colorizer",
"name": "bracket-pair-colorizer",
"publisher": "CoenraadS",
"version": "1.0.27"
},
{
"id": "GrapeCity.gc-excelviewer",
"name": "gc-excelviewer",
"publisher": "GrapeCity",
"version": "2.0.20"
},
{
"id": "alefragnani.Bookmarks",
"name": "Bookmarks",
"publisher": "alefragnani",
"version": "0.19.0"
},
{
"id": "alexdima.copy-relative-path",
"name": "copy-relative-path",
"publisher": "alexdima",
"version": "0.0.2"
},
{
"id": "castwide.solargraph",
"name": "solargraph",
"publisher": "castwide",
"version": "0.13.0"
},
{
"id": "eamodio.gitlens",
"name": "gitlens",
"publisher": "eamodio",
"version": "8.2.3"
},
{
"id": "esbenp.prettier-vscode",
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "1.2.2"
},
{
"id": "jakob101.RelativePath",
"name": "RelativePath",
"publisher": "jakob101",
"version": "1.4.0"
},
{
"id": "mechatroner.rainbow-csv",
"name": "rainbow-csv",
"publisher": "mechatroner",
"version": "0.2.1"
},
{
"id": "nonoroazoro.syncing",
"name": "syncing",
"publisher": "nonoroazoro",
"version": "1.5.3"
},
{
"id": "octref.vetur",
"name": "vetur",
"publisher": "octref",
"version": "0.11.7"
},
{
"id": "pflannery.vscode-versionlens",
"name": "vscode-versionlens",
"publisher": "pflannery",
"version": "0.20.0"
},
{
"id": "rebornix.Ruby",
"name": "Ruby",
"publisher": "rebornix",
"version": "0.17.0"
},
{
"id": "robertohuertasm.vscode-icons",
"name": "vscode-icons",
"publisher": "robertohuertasm",
"version": "7.22.0"
},
{
"id": "ryu1kn.partial-diff",
"name": "partial-diff",
"publisher": "ryu1kn",
"version": "1.1.0"
},
{
"id": "sianglim.slim",
"name": "slim",
"publisher": "sianglim",
"version": "0.1.2"
},
{
"id": "sidneys1.gitconfig",
"name": "gitconfig",
"publisher": "sidneys1",
"version": "1.0.1"
},
{
"id": "sysoev.language-stylus",
"name": "language-stylus",
"publisher": "sysoev",
"version": "1.9.1"
},
{
"id": "thisismanta.stylus-supremacy",
"name": "stylus-supremacy",
"publisher": "thisismanta",
"version": "2.10.0"
},
{
"id": "wmaurer.vscode-jumpy",
"name": "vscode-jumpy",
"publisher": "wmaurer",
"version": "0.3.1"
},
{
"id": "zhuangtongfa.Material-theme",
"name": "Material-theme",
"publisher": "zhuangtongfa",
"version": "2.13.4"
}
]
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "alt+b",
"command": "bookmarks.listFromAllFiles"
}
]
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "shift+alt+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+b",
"command": "bookmarks.listFromAllFiles"
}
]
{
// Defines VSCode's display language.
// See https://go.microsoft.com/fwlink/?LinkId=761051 for a list of supported languages.
// Changing the value requires restarting VSCode.
"locale":"en"
}
{
"workbench.startupEditor": "newUntitledFile",
"editor.scrollBeyondLastLine": false,
"editor.fontSize": 14,
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"explorer.confirmDelete": false,
"editor.formatOnSave": true,
"prettier.semi": false,
"prettier.singleQuote": true,
"editor.rulers": [
80,
120
],
"stylusSupremacy.insertBraces": false,
"stylusSupremacy.insertColons": false,
"stylusSupremacy.insertSemicolons": false,
"editor.minimap.enabled": false,
"workbench.colorTheme": "One Dark Pro Vivid",
"workbench.iconTheme": "vscode-icons",
"explorer.confirmDragAndDrop": false,
"files.associations": {
"*.svelte": "html",
".zpreztorc": "shellscript"
},
"window.zoomLevel": 0,
"emmet.includeLanguages": {
"erb": "html"
},
"files.trimTrailingWhitespace": true,
"gitlens.blame.ignoreWhitespace": true,
"files.defaultLanguage": "shellscript",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
}
}
{
"workbench.startupEditor": "newUntitledFile",
"editor.scrollBeyondLastLine": false,
"editor.fontSize": 14,
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"explorer.confirmDelete": false,
"editor.formatOnSave": true,
"prettier.semi": false,
"prettier.singleQuote": true,
"editor.rulers": [
80,
120
],
"stylusSupremacy.insertBraces": false,
"stylusSupremacy.insertColons": false,
"stylusSupremacy.insertSemicolons": false,
"editor.minimap.enabled": false,
"workbench.colorTheme": "One Dark Pro Vivid",
"workbench.iconTheme": "vscode-icons",
"explorer.confirmDragAndDrop": false,
"files.associations": {
"*.svelte": "html",
".zpreztorc": "shellscript",
"exclude": "shellscript"
},
"window.zoomLevel": 0,
"emmet.includeLanguages": {
"erb": "html"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment