Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@gvsrepins
Last active April 18, 2017 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gvsrepins/f38f432ab0761b6792f91fc6787d2d72 to your computer and use it in GitHub Desktop.
Save gvsrepins/f38f432ab0761b6792f91fc6787d2d72 to your computer and use it in GitHub Desktop.
My vscode so far..
// Place your settings in this file to overwrite the default settings
{
"editor.rulers": [
80,
120
],
"workbench.iconTheme": "vscode-icons",
"window.zoomLevel": 1,
"window.title": "${dirty}${rootName}${separator}${activeEditorMedium}${separator}${appName}",
"editor.fontSize": 16,
"editor.minimap.enabled": true,
"workbench.welcome.enabled": false,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"files.trimTrailingWhitespace": true,
"workbench.editor.enablePreview":false,
"files.associations": {
"*json.template": "json",
"*xml.template": "xml",
"*js.template": "javascript"
},
"vsicons.associations.files": [
{
"icon": "ejs",
"extensions": [
"js.template",
"xml.template",
"json.template"
],
"format": "svg"
}
],
"vsicons.associations.folders": [
{
"icon": "script",
"extensions": [
"tasks",
"hooks"
],
"format": "svg"
},
{
"icon": "view",
"extensions": [
"templates"
],
"format": "svg"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment