Skip to content

Instantly share code, notes, and snippets.

@terry90
Last active March 15, 2018 10:21
Show Gist options
  • Save terry90/6af67054645379d7d62996f1d25ffe1a to your computer and use it in GitHub Desktop.
Save terry90/6af67054645379d7d62996f1d25ffe1a to your computer and use it in GitHub Desktop.
VS Code config
[
{
"id": "Angular.ng-template",
"name": "ng-template",
"publisher": "Angular",
"version": "0.1.9"
},
{
"id": "CoenraadS.bracket-pair-colorizer",
"name": "bracket-pair-colorizer",
"publisher": "CoenraadS",
"version": "1.0.20"
},
{
"id": "MariusAlchimavicius.json-to-ts",
"name": "json-to-ts",
"publisher": "MariusAlchimavicius",
"version": "1.5.4"
},
{
"id": "PKief.material-icon-theme",
"name": "material-icon-theme",
"publisher": "PKief",
"version": "3.2.5"
},
{
"id": "alefragnani.project-manager",
"name": "project-manager",
"publisher": "alefragnani",
"version": "0.24.1"
},
{
"id": "bierner.color-info",
"name": "color-info",
"publisher": "bierner",
"version": "0.5.0"
},
{
"id": "castwide.solargraph",
"name": "solargraph",
"publisher": "castwide",
"version": "0.13.0"
},
{
"id": "christian-kohler.path-intellisense",
"name": "path-intellisense",
"publisher": "christian-kohler",
"version": "1.4.2"
},
{
"id": "eamodio.gitlens",
"name": "gitlens",
"publisher": "eamodio",
"version": "8.1.1"
},
{
"id": "eg2.tslint",
"name": "tslint",
"publisher": "eg2",
"version": "1.0.28"
},
{
"id": "esbenp.prettier-vscode",
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "1.2.2"
},
{
"id": "formulahendry.auto-close-tag",
"name": "auto-close-tag",
"publisher": "formulahendry",
"version": "0.5.6"
},
{
"id": "formulahendry.auto-rename-tag",
"name": "auto-rename-tag",
"publisher": "formulahendry",
"version": "0.0.15"
},
{
"id": "joelday.docthis",
"name": "docthis",
"publisher": "joelday",
"version": "0.6.0"
},
{
"id": "johnpapa.Angular2",
"name": "Angular2",
"publisher": "johnpapa",
"version": "2.14.0"
},
{
"id": "johnpapa.winteriscoming",
"name": "winteriscoming",
"publisher": "johnpapa",
"version": "0.5.1"
},
{
"id": "misogi.ruby-rubocop",
"name": "ruby-rubocop",
"publisher": "misogi",
"version": "0.7.0"
},
{
"id": "msjsdiag.debugger-for-chrome",
"name": "debugger-for-chrome",
"publisher": "msjsdiag",
"version": "4.2.0"
},
{
"id": "naumovs.color-highlight",
"name": "color-highlight",
"publisher": "naumovs",
"version": "2.3.0"
},
{
"id": "nonoroazoro.syncing",
"name": "syncing",
"publisher": "nonoroazoro",
"version": "1.5.3"
},
{
"id": "otoniel-isidoro.vscode-ruby-ctags",
"name": "vscode-ruby-ctags",
"publisher": "otoniel-isidoro",
"version": "1.4.1"
},
{
"id": "rbbit.typescript-hero",
"name": "typescript-hero",
"publisher": "rbbit",
"version": "2.3.1"
},
{
"id": "rebornix.Ruby",
"name": "Ruby",
"publisher": "rebornix",
"version": "0.17.0"
},
{
"id": "vayan.haml",
"name": "haml",
"publisher": "vayan",
"version": "1.0.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": "ctrl+d ctrl+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
}
]
{
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 5,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.tabSize": 2,
"tslint.autoFixOnSave": true,
"workbench.iconTheme": "material-icon-theme",
"editor.renderControlCharacters": false,
"gitlens.codeLens.scopes": [
"document",
"containers"
],
"diffEditor.ignoreTrimWhitespace": true,
"prettier.eslintIntegration": true,
"prettier.singleQuote": true,
"prettier.semi": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment