Last active
April 18, 2017 19:19
-
-
Save gvsrepins/f38f432ab0761b6792f91fc6787d2d72 to your computer and use it in GitHub Desktop.
My vscode so far..
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 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