Skip to content

Instantly share code, notes, and snippets.

@davidcostadev
Last active April 28, 2018 14:29
Show Gist options
  • Save davidcostadev/c2ce362e454e478b7033a8456c113e34 to your computer and use it in GitHub Desktop.
Save davidcostadev/c2ce362e454e478b7033a8456c113e34 to your computer and use it in GitHub Desktop.
vscode-davidcostadev.md
//ubuntu
[
{
"key": "ctrl+[slash]",
"command": "editor.action.commentLine"
},
{
"command": "editor.action.blockComment",
"key": "ctrl+shift+[slash]",
"when": "editorTextFocus && !editorReadonly"
}
]
{
"workbench.iconTheme": "file-icons",
"editor.fontFamily": "'Fira Code'",
"editor.fontSize": 15,
"editor.tabCompletion": true,
"editor.rulers": [
100
],
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"editor.lineHeight": 26,
"editor.mouseWheelZoom": true,
"editor.renderIndentGuides": true,
"editor.renderLineHighlight": "all",
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.fontLigatures": true,
"workbench.colorCustomizations" : {
"activityBar.background": "#282C34",
"sideBar.background": "#282C34",
"titleBar.activeBackground": "#282C34"
},
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html"
},
"eslint.validate": [
"javascript",
"javascriptreact"
// "vue"
],
"javascript.format.enable": false,
"emmet.triggerExpansionOnTab": true,
"git.confirmSync": false,
"sublimeTextKeymap.promptV3Features": true,
"files.eol": "\n",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"workbench.colorTheme": "One Dark Pro"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment