Skip to content

Instantly share code, notes, and snippets.

@mrpavelius
Created July 14, 2022 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrpavelius/c8dbd993ff0205efee811a88a69d4b0b to your computer and use it in GitHub Desktop.
Save mrpavelius/c8dbd993ff0205efee811a88a69d4b0b to your computer and use it in GitHub Desktop.
{
"window.zoomLevel": 2,
"projectManager.sortList": "Saved",
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.openEditors.visible": 0,
"explorer.confirmDragAndDrop": false,
"workbench.tree.indent": 14,
"workbench.startupEditor": "none",
"workbench.settings.editor": "json",
"workbench.activityBar.visible": false,
"workbench.iconTheme": "material-icon-theme",
"editor.tabCompletion": "on",
"editor.stickyTabStops": true,
"editor.minimap.enabled": false,
"editor.cursorBlinking": "solid",
"editor.renderWhitespace": "trailing",
"editor.fontFamily": "JetBrains Mono",
"editor.unicodeHighlight.nonBasicASCII": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"diffEditor.renderSideBySide": false,
"diffEditor.ignoreTrimWhitespace": false,
"debug.console.fontFamily": "JetBrains Mono",
"files.exclude": {
"**/.git": false
},
"files.watcherExclude": {
"**/.venv/**": true,
"**/__pycache__/**": true,
},
"files.associations": {
".env.*": "dotenv",
".inputrc": "shellscript",
".bash_prompt": "shellscript",
".bash_history": "shellscript",
".bashrc_partial": "shellscript",
".bash_completion": "shellscript",
},
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"[python]": {
"editor.rulers": [88],
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
},
},
"python.sortImports.args": [
"--src=${workspaceFolder}"
],
"python.languageServer": "Pylance",
"python.formatting.provider": "black",
"tabnine.experimentalAutoImports": false,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticMode": "workspace",
"[shellscript]": {
"editor.rulers": [86],
},
"cSpell.language": "en, ru",
"terminal.integrated.enableMultiLinePasteWarning": false,
"sourcery.token": "",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment