Skip to content

Instantly share code, notes, and snippets.

@niyabits
Last active April 7, 2020 12:13
Show Gist options
  • Save niyabits/3adade8450d63d195adba17bd93833da to your computer and use it in GitHub Desktop.
Save niyabits/3adade8450d63d195adba17bd93833da to your computer and use it in GitHub Desktop.
Visual Studio Code Settings
{
"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