Last active
September 29, 2018 09:21
-
-
Save sthobis/4e6a2a257155094d0513f31107000044 to your computer and use it in GitHub Desktop.
Microsoft Visual Studio Code User Settings
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
{ | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
}, | |
"editor.fontSize": 14, | |
"editor.minimap.enabled": false, | |
"editor.renderIndentGuides": false, | |
"editor.tabSize": 2, | |
"explorer.openEditors.visible": 0, | |
"window.menuBarVisibility": "toggle", | |
"window.openFoldersInNewWindow": "on", | |
"window.zoomLevel": 0.5, | |
"workbench.activityBar.visible": false, | |
"workbench.iconTheme": null, | |
"workbench.statusBar.visible": true, | |
"workbench.colorTheme": "Monokai", | |
"workbench.colorCustomizations": { | |
"editor.background": "#282c35", | |
"sideBar.foreground": "#8a979e", | |
"sideBar.background": "#232830", | |
"statusBar.background": "#232830", | |
"editorOverviewRuler.border": "#282c35" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"explorer.confirmDelete": false, | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe", | |
"editor.formatOnSave": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment