Last active
April 27, 2017 09:58
-
-
Save buddhike/a70da73bf1c8d03331480e65aa486292 to your computer and use it in GitHub Desktop.
VS Code Config
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.fontFamily": "Menlo", | |
"editor.fontSize": 15, | |
"javascript.validate.enable": false, | |
"window.reopenFolders": "none", | |
"editor.renderWhitespace": "none", | |
"editor.renderIndentGuides": true, | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"search.exclude": { | |
"**/.tmp": true, | |
"**/out": true, | |
"**/dist": true, | |
"**/node_modules": true, | |
"**/bower_components": true | |
}, | |
"editor.cursorBlinking": "blink", | |
"go.lintOnSave": true, | |
"go.gopath": "/Users/Buddhike/projects/go", | |
"files.autoSave": "off", | |
"workbench.sideBar.location": "left", | |
"workbench.colorTheme": "One Monokai", | |
"workbench.iconTheme": "vs-seti", | |
"window.zoomLevel": 0, | |
"vsicons.dontShowNewVersionMessage": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment