Skip to content

Instantly share code, notes, and snippets.

@timster
Last active October 21, 2021 12:51
Show Gist options
  • Save timster/a7feca2d09cce2f18effe85e304d88d8 to your computer and use it in GitHub Desktop.
Save timster/a7feca2d09cce2f18effe85e304d88d8 to your computer and use it in GitHub Desktop.
{
"breadcrumbs.enabled": true,
"breadcrumbs.symbolSortOrder": "position",
"editor.definitionLinkOpensInPeek": false,
"editor.fontFamily": "SF Mono",
"editor.fontLigatures": false,
"editor.fontSize": 11,
"editor.minimap.enabled": false,
"editor.rulers": [
120,
150
],
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"extensions.autoUpdate": false,
"extensions.ignoreRecommendations": true,
"files.associations": {
"*.af": "python"
},
"files.exclude": {
"**/node_modules": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"files.insertFinalNewline": true,
"git.autofetch": true,
"git.enableSmartCommit": true,
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"polacode.transparentBackground": true,
"python.defaultInterpreterPath": "/usr/local/opt/python@3.9/bin/python3.9",
"python.formatting.provider": "black",
"python.linting.banditEnabled": false,
"python.linting.enabled": false,
"python.linting.flake8Enabled": false,
"python.linting.mypyEnabled": false,
"python.linting.prospectorEnabled": false,
"python.linting.pycodestyleEnabled": false,
"python.linting.pydocstyleEnabled": false,
"python.linting.pylamaEnabled": false,
"python.linting.pylintEnabled": false,
"python.sortImports.args": [
"--force-single-line-imports"
],
"search.exclude": {
"**/.cache": true,
"**/.env": true,
"**/.mypy_cache": true,
"**/.venv": true,
"**/__pycache__": true,
"**/bower_components": true,
"**/node_modules": true
},
"search.useGlobalIgnoreFiles": false,
"search.useIgnoreFiles": false,
"security.workspace.trust.enabled": false,
"security.workspace.trust.untrustedFiles": "open",
"turboConsoleLog.addSemicolonInTheEnd": true,
"turboConsoleLog.includeFileNameAndLineNum": false,
"turboConsoleLog.logMessagePrefix": "LOG",
"turboConsoleLog.quote": "'",
"vetur.completion.tagCasing": "initial",
"vetur.format.defaultFormatter.css": "none",
"vetur.format.defaultFormatter.html": "none",
"vetur.format.defaultFormatter.js": "none",
"vetur.format.defaultFormatter.ts": "none",
"vetur.validation.template": false,
"window.clickThroughInactive": false,
"window.titleBarStyle": "native",
"workbench.colorTheme": "Dracula",
"workbench.editor.enablePreview": false,
"workbench.editor.showIcons": false,
"workbench.editor.untitled.hint": "hidden",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"workbench.tree.indent": 20,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"editor.bracketPairColorization.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment