Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. {
  2. "workbench.startupEditor": "none",
  3. "workbench.iconTheme": "material-icon-theme",
  4. // Recording
  5. "editor.quickSuggestions": false,
  6. // Sets Zoom level for VSCode
  7. "window.zoomLevel": 1,
  8. "window.titleBarStyle": "custom",
  9. "explorer.confirmDragAndDrop": false,
  10. // Sets the Font size and family
  11. "editor.fontFamily": "Fira Code",
  12. "editor.fontSize": 16,
  13. "editor.lineHeight": 24,
  14. "editor.fontLigatures": true,
  15. // Editor settings
  16. "javascript.suggest.autoImports": false,
  17. "editor.formatOnSave": true,
  18. "editor.suggestSelection": "first",
  19. "editor.selectionClipboard": false,
  20. // Editor indentation settings
  21. "editor.tabSize": 2,
  22. "editor.insertSpaces": true,
  23. "editor.detectIndentation": true,
  24. // Auto applies editor rules for long lines of code
  25. "editor.rulers": [
  26. 80,
  27. 120
  28. ],
  29. // Enable controlled zoom by scrolling
  30. "editor.mouseWheelZoom": true,
  31. // Applies a visual effect at the left of selected line
  32. "editor.renderLineHighlight": "gutter",
  33. // Increases terminal font size
  34. "terminal.integrated.fontSize": 14,
  35. // ESLint configuration
  36. "eslint.packageManager": "yarn",
  37. "eslint.autoFixOnSave": true,
  38. "eslint.validate": [
  39. {
  40. "language": "javascript",
  41. "autoFix": true
  42. },
  43. {
  44. "language": "javascriptreact",
  45. "autoFix": true
  46. },
  47. {
  48. "language": "typescript",
  49. "autoFix": true
  50. },
  51. {
  52. "language": "typescriptreact",
  53. "autoFix": true
  54. }
  55. ],
  56. // Emmet
  57. "emmet.syntaxProfiles": {
  58. "javascript": "jsx" // Defines auto closing tags in JSX
  59. },
  60. "emmet.includeLanguages": {
  61. "javascript": "javascriptreact"
  62. },
  63. // Disable auto imports
  64. "javascript.updateImportsOnFileMove.enabled": "never",
  65. // Enable breadcrumbs
  66. "breadcrumbs.enabled": true,
  67. // Git settings
  68. "git.enableSmartCommit": true,
  69. "git.autofetch": true,
  70. // Colorize settings
  71. "colorize.languages": [
  72. "javascript",
  73. "json",
  74. "html",
  75. "css"
  76. ],
  77. // Pretier settings
  78. "prettier.trailingComma": "es5",
  79. "prettier.singleQuote": true,
  80. "prettier.useTabs": false,
  81. "prettier.semi": true,
  82. "[json]": {
  83. "editor.defaultFormatter": "esbenp.prettier-vscode"
  84. },
  85. "[javascript]": {
  86. "editor.defaultFormatter": "esbenp.prettier-vscode"
  87. },
  88. "[html]": {
  89. "editor.defaultFormatter": "esbenp.prettier-vscode"
  90. },
  91. "[yaml]": {
  92. "editor.defaultFormatter": "dbaeumer.vscode-eslint"
  93. },
  94. // VSCode explorer settings
  95. "explorer.confirmDelete": false,
  96. // GitLens settings
  97. "gitlens.views.repositories.location": "gitlens",
  98. "gitlens.views.fileHistory.location": "gitlens",
  99. "gitlens.views.lineHistory.location": "gitlens",
  100. "gitlens.views.compare.location": "gitlens",
  101. "gitlens.views.search.location": "gitlens",
  102. "gitlens.codeLens.enabled": false,
  103. // Git options
  104. "git.confirmSync": false,
  105. // Do not ignore extensions recommendations
  106. "extensions.ignoreRecommendations": false,
  107. "workbench.colorTheme": "Dracula"
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement