Created
September 20, 2017 18:44
-
-
Save mattdennewitz/256d10d358e2d08e2d81e81d9c3aedb5 to your computer and use it in GitHub Desktop.
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
{ | |
"window.zoomLevel": 0, | |
"editor.fontSize": 15, | |
"editor.fontFamily": "Input Mono Condensed", | |
"editor.cursorStyle": "block", | |
"editor.wordWrap": "on", | |
"workbench.colorTheme": "Bonsai", | |
"editor.minimap.enabled": false, | |
"workbench.colorCustomizations": { | |
"editor.background": "#f5f5f5", | |
"editor.foreground": "#555555", | |
"editorLineNumber.foreground": "#333333", | |
"statusBar.background": "#0328EB" | |
}, | |
"editor.tokenColorCustomizations": { | |
"strings": "#7986CB", | |
"numbers": "#2962FF", | |
"functions": "#0328EB", | |
"types": "#3949AB", | |
"comments": "#9E9E9E" | |
}, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.sideBar.location": "left", | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"workbench.activityBar.visible": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/node_modules/": true, | |
"**/*.pyc": true, | |
"**/*~": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment