Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. {
  2. "editor.fontFamily": "Dank Mono, Hasklig, Fira Code, Roboto Mono, Monaco",
  3. "editor.fontSize": 13,
  4. "editor.tabSize": 2,
  5. "editor.rulers": [80, 120],
  6. "workbench.iconTheme": "vscode-seedling-icon-theme",
  7. "window.zoomLevel": 0,
  8. "mocha-snippets.glob": "**/*.spec.{js,ts}",
  9. "breadcrumbs.enabled": true,
  10. "workbench.startupEditor": "none",
  11. "editor.minimap.renderCharacters": false,
  12. "terminal.integrated.scrollback": 5000,
  13. "git.confirmSync": false,
  14. "workbench.colorTheme": "Kary Pro Colors - Light",
  15. "sync.quietSync": true,
  16. "terminal.integrated.fontFamily": "Fira Code, Roboto Mono, Monaco",
  17. "breadcrumbs.symbolPath": "off",
  18. "editor.acceptSuggestionOnEnter": "off",
  19. "typescript.updateImportsOnFileMove.enabled": "always",
  20. "javascript.updateImportsOnFileMove.enabled": "always",
  21. "gitlens.views.lineHistory.enabled": false,
  22. "gitlens.views.search.enabled": false,
  23. "gitlens.views.compare.enabled": false,
  24. "gitlens.views.repositories.files.layout": "auto",
  25. "editor.fontLigatures": true,
  26. "editor.suggestSelection": "first",
  27. "terminal.integrated.shell.osx": "/bin/zsh",
  28. "eslint.enable": false,
  29. "eslint.validate": [
  30. "javascript",
  31. {"language": "typescript", "autoFix": true },
  32. ],
  33. "eslint.autoFixOnSave": true,
  34. "vsintellicode.modify.editor.suggestSelection": "choseToUpdateConfiguration",
  35. "git.autofetch": true,
  36. "vsicons.dontShowNewVersionMessage": true
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement