Skip to content

Instantly share code, notes, and snippets.

@chyld
Last active October 25, 2022 11:19
Show Gist options
  • Save chyld/da3ae4a019b38593e1f69d70f3b3ec52 to your computer and use it in GitHub Desktop.
Save chyld/da3ae4a019b38593e1f69d70f3b3ec52 to your computer and use it in GitHub Desktop.
{
"workbench.startupEditor": "none",
"window.menuBarVisibility": "toggle",
"files.trimTrailingWhitespace": true,
"breadcrumbs.enabled": true,
"dev.containers.dockerPath": "podman",
"editor.minimap.enabled": false,
"editor.fontFamily": "FiraCode NF",
"editor.fontSize": 15,
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Dracula Soft",
"workbench.colorCustomizations": {
"editorLineNumber.foreground": "#ff33cc",
"editorLineNumber.activeForeground": "#33ffcc"
},
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "basic",
"python.linting.flake8Enabled": true,
"python.formatting.blackArgs": [],
"[python]": {
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"prettier.tabWidth": 2,
"[jsonc]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment