Guest User

Untitled

a guest
Dec 12th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. {
  2. "editor.renderWhitespace": "boundary",
  3. "editor.wordWrap": "wordWrapColumn",
  4. "files.exclude": {
  5. "**/.git": true,
  6. "**/.pytest_cache": true,
  7. "**/.hypothesis": true,
  8. "**/__pycache__": true,
  9. },
  10. "diffEditor.ignoreTrimWhitespace": false,
  11. "editor.find.autoFindInSelection": true,
  12. "editor.dragAndDrop": false,
  13. "editor.formatOnPaste": true,
  14. "editor.formatOnType": true,
  15. "editor.mouseWheelZoom": true,
  16. "editor.renderControlCharacters": true,
  17. "editor.rulers": [
  18. 72,
  19. 79
  20. ],
  21. "editor.wordWrapColumn": 79,
  22. "python.autoComplete.addBrackets": true,
  23. "python.formatting.provider": "yapf",
  24. "python.linting.flake8Enabled": true,
  25. "python.linting.pydocstyleEnabled": true,
  26. "python.pythonPath": "python3",
  27. "files.trimTrailingWhitespace": true,
  28. "workbench.iconTheme": "vscode-icons",
  29. "files.insertFinalNewline": true,
  30. "files.trimFinalNewlines": true,
  31. "workbench.colorTheme": "Panda Syntax",
  32. "window.zoomLevel": 0,
  33. "breadcrumbs.enabled": true,
  34. "python.formatting.yapfPath": "/home/vinicius/.local/bin/yapf",
  35. "editor.formatOnSave": true,
  36. "editor.codeActionsOnSave": {
  37. "source.organizeImports": true
  38. },
  39. }
Add Comment
Please, Sign In to add comment