Last active
August 5, 2018 21:51
-
-
Save rub1cc/968ee71c6964d2850161d7996af78e86 to your computer and use it in GitHub Desktop.
My Visual Studio Code 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
{ | |
"workbench.colorTheme": "Monokai Vibrant", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"window.zoomLevel": -1, | |
"python.linting.flake8Enabled": true, | |
"python.formatting.provider": "autopep8", | |
"editor.formatOnSave": true, | |
"editor.fontFamily": "'Fira Code','Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 16, | |
"editor.wordWrap": "on", | |
"python.linting.pylintEnabled": false, | |
"workbench.activityBar.visible": true, | |
"editor.renderWhitespace": "all", | |
"editor.renderControlCharacters": false, | |
"workbench.sideBar.location": "left", | |
"workbench.iconTheme": "file-icons", | |
"emmet.includeLanguages": { | |
"vue": "html", | |
"blade": "html" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment