Created
June 13, 2017 02:29
-
-
Save dahoba/dfd5f87eea0cd35465d06587d2800329 to your computer and use it in GitHub Desktop.
VS Code user settings on macOS
This file contains 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": "Inconsolata", | |
"editor.fontWeight": "normal", | |
"editor.fontSize": 14, | |
"editor.lineHeight": 0, | |
"editor.insertSpaces": true, | |
"editor.rulers": [ | |
120, | |
200 | |
], | |
"editor.mouseWheelZoom": false, | |
"workbench.editor.enablePreview": true, | |
"typescript.check.tscVersion": false, | |
"window.zoomLevel": 0, | |
"editor.renderLineHighlight": "gutter", | |
"workbench.iconTheme": "vs-seti", | |
"editor.cursorStyle": "line", | |
"editor.tabSize": 4, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true | |
}, | |
"workbench.colorTheme": "Tomorrow Night Eighties", | |
"editor.minimap.enabled": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment