Last active
April 7, 2020 12:13
-
-
Save niyabits/3adade8450d63d195adba17bd93833da to your computer and use it in GitHub Desktop.
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
{ | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"editor.fontSize": 18, | |
"terminal.integrated.fontSize": 18, | |
"editor.wordWrap": "on", | |
"editor.tabSize": 2, | |
"prettier.singleQuote": true, | |
"python.linting.pylintArgs": [ | |
"--load-plugins=pylint_django", | |
"--errors-only" | |
], | |
"liveServer.settings.donotShowInfoMsg": true, | |
"explorer.confirmDelete": false, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
"edge": "html" | |
}, | |
"window.zoomLevel": 0, | |
"prettier.jsxSingleQuote": true, | |
"workbench.colorTheme": "Atom One Dark", | |
"editor.formatOnPaste": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.formatOnSave": true, | |
"workbench.startupEditor": "welcomePage", | |
"editor.minimap.enabled": false, | |
// "editor.hover.enabled": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment