Created
May 14, 2021 14:59
-
-
Save Enzodtz/59ea6ce38310ea2712331481fdac0815 to your computer and use it in GitHub Desktop.
My VSCode 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
{ | |
"keyboard.dispatch": "keyCode", | |
"workbench.colorTheme": "Atom One Darker", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.editorAssociations": [ | |
{ | |
"viewType": "jupyter.notebook.ipynb", | |
"filenamePattern": "*.ipynb" | |
} | |
], | |
"python.pythonPath": "/usr/bin/python3", | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#191B1F" | |
}, | |
"editor.fontFamily": "MonoLisa", | |
"workbench.iconTheme": "material-icon-theme", | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[python]": { | |
"editor.tabSize": 4 | |
}, | |
"editor.tabSize": 2, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"dart.flutterSdkPath": "/home/enzodtz/flutter", | |
"files.associations": { | |
"**/templates/*.html": "django-html", | |
"**/templates/*": "django-txt", | |
"**/requirements{/**,*}.{txt,in}": "pip-requirements", | |
"*.html": "html" | |
}, | |
"emmet.includeLanguages": { | |
"django-html": "html", | |
"javascript": "javascriptreact" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.list.automaticKeyboardNavigation": false, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"explorer.confirmDelete": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment