Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. {
  2. // Telemetry and reporting.
  3. "telemetry.enableTelemetry": false,
  4. "telemetry.enableCrashReporter": false,
  5. // Editor
  6. "editor.formatOnSave": true,
  7. "editor.formatOnType": true,
  8. "editor.formatOnPaste": true,
  9. "editor.fontSize": 18,
  10. "terminal.integrated.fontSize": 18,
  11. "scm.diffDecorations": "none",
  12. "workbench.editor.showTabs": false,
  13. "workbench.statusBar.visible": false,
  14. "editor.cursorBlinking": "solid",
  15. "breadcrumbs.enabled": true,
  16. "editor.fontFamily": "'Inconsolata', monospace",
  17. "editor.fontWeight": "400",
  18. "terminal.integrated.fontWeight": "100",
  19. "terminal.integrated.confirmOnExit": false,
  20. "terminal.integrated.fontFamily": "'Ubuntu Mono',monospace",
  21. "terminal.integrated.drawBoldTextInBrightColors": false,
  22. "terminal.integrated.rightClickBehavior": "copyPaste",
  23. "terminal.integrated.letterSpacing": 0,
  24. "editor.minimap.enabled": false,
  25. "editor.lineNumbers": "on",
  26. "workbench.colorTheme": "Horizon Italic",
  27. "workbench.startupEditor": "newUntitledFile",
  28. "terminal.integrated.shell.windows": "C:\WINDOWS\System32\cmd.exe",
  29. "explorer.confirmDelete": false,
  30. "editor.tabCompletion": "on",
  31. "editor.quickSuggestions": {
  32. "other": true,
  33. "comments": true,
  34. "strings": true
  35. },
  36. "workbench.tips.enabled": true,
  37. // Enable word based suggestions
  38. "[markdown]": {
  39. "editor.quickSuggestions": true
  40. },
  41. //
  42. "extensions.showRecommendationsOnlyOnDemand": false,
  43. "day-comment.list": [],
  44. "day-comment.prefix": "",
  45. //
  46. "explorer.confirmDragAndDrop": false,
  47. "editor.codeActionsOnSave": {
  48. "source.organizeImports": true,
  49. "editor.formatOnSave": true
  50. },
  51. "zenMode.hideLineNumbers": false,
  52. "zenMode.restore": true,
  53. "window.zoomLevel": -1,
  54. "window.newWindowDimensions": "fullscreen",
  55. "window.menuBarVisibility": "toggle",
  56. // "window.autoDetectHighContrast": true,
  57. "workbench.editor.openSideBySideDirection": "right",
  58. "git.enableSmartCommit": true,
  59. // Markdown
  60. "markdown.extension.toc.githubCompatibility": true,
  61. "markdown.extension.syntax.plainTheme": true,
  62. // Python
  63. // "python.linting.pylintEnabled": true,
  64. // "python.linting.enabled": true,
  65. // "python.formatting.provider": "black",
  66. // Javascript
  67. "javascript.updateImportsOnFileMove.enabled": "always",
  68. // Typescript
  69. "typescript.updateImportsOnFileMove.enabled": "always",
  70. "update.showReleaseNotes": false,
  71. "python.jediEnabled": false,
  72. // Renderer
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement