Advertisement
Guest User

Untitled

a guest
May 24th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. {
  2. "window.zoomLevel": 0.55,
  3. "editor.mouseWheelZoom": true,
  4. "window.titleBarStyle": "custom",
  5. "files.exclude": {
  6. "**/.classpath": true,
  7. "**/.project": true,
  8. "**/.settings": true,
  9. "**/.factorypath": true
  10. },
  11. "workbench.iconTheme": "material-icon-theme",
  12. "terminal.integrated.fontFamily": "Consolas",
  13. "terminal.integrated.fontSize": 15,
  14. "editor.showUnused": true,
  15. "editor.autoClosingBrackets": "always",
  16. "editor.links": true,
  17. "editor.minimap.showSlider": "always",
  18. "editor.rulers": [
  19. 72,
  20. 79
  21. ],
  22. "editor.formatOnSave": true,
  23. "editor.fontFamily": "Consolas",
  24. "editor.fontSize": 15,
  25. "editor.renderWhitespace": "all",
  26. "python.linting.pep8Enabled": true,
  27. "python.linting.flake8Enabled": true,
  28. "python.linting.pylintEnabled": false,
  29. "[python]": {
  30. "editor.formatOnSave": true,
  31. "editor.tabSize": 4
  32. },
  33. "files.associations": {
  34. "**/templates/*.html": "django-html",
  35. "**/templates/*": "django-txt",
  36. "**/requirements{/**,*}.{txt,in}": "pip-requirements"
  37. },
  38. "emmet.includeLanguages": {
  39. "django-html": "html"
  40. },
  41. "[css]": {
  42. "editor.formatOnSave": true,
  43. "editor.tabSize": 4
  44. },
  45. "[django-html]": {
  46. "editor.formatOnSave": false,
  47. "editor.tabSize": 4
  48. },
  49. "workbench.startupEditor": "newUntitledFile",
  50. "editor.minimap.enabled": false,
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement