Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. {
  2. "git.enableSmartCommit": true,
  3. "git.confirmSync": false,
  4. "npm.enableScriptExplorer": true,
  5. "explorer.confirmDelete": false,
  6. "gitlens.advanced.messages": {
  7. "suppressCommitHasNoPreviousCommitWarning": false,
  8. "suppressCommitNotFoundWarning": false,
  9. "suppressFileNotUnderSourceControlWarning": false,
  10. "suppressGitVersionWarning": false,
  11. "suppressLineUncommittedWarning": false,
  12. "suppressNoRepositoryWarning": false,
  13. "suppressResultsExplorerNotice": false,
  14. "suppressShowKeyBindingsNotice": true,
  15. "suppressUpdateNotice": true,
  16. "suppressWelcomeNotice": true
  17. },
  18. "workbench.startupEditor": "newUntitledFile",
  19. "explorer.confirmDragAndDrop": false,
  20. "gitlens.keymap": "alternate",
  21. "workbench.iconTheme": "vscode-icons",
  22. "vsicons.dontShowNewVersionMessage": true,
  23. "window.zoomLevel": 0,
  24. "editor.renderControlCharacters": true,
  25. "editor.renderWhitespace": "all",
  26. "typescript.updateImportsOnFileMove.enabled": "always",
  27. "terminal.integrated.shell.osx": "zsh",
  28. "editor.snippetSuggestions": "top",
  29. "editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
  30. "editor.fontLigatures": true,
  31. "emmet.showSuggestionsAsSnippets": true,
  32. "emmet.showExpandedAbbreviation": "always",
  33. "prettier.singleQuote": true,
  34. "breadcrumbs.enabled": true,
  35. "prettier.eslintIntegration": true,
  36. "editor.formatOnSave": true,
  37. "[javascript]": {
  38. "editor.formatOnSave": true
  39. },
  40. "[javascriptreact]": {
  41. "editor.formatOnSave": true
  42. },
  43. "[typescript]": {
  44. "editor.formatOnSave": true
  45. },
  46. "gitlens.views.fileHistory.enabled": true,
  47. "gitlens.views.lineHistory.enabled": true,
  48. "git.autofetch": true,
  49. "editor.codeActionsOnSave": {
  50. "source.fixAll.tslint": true
  51. }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement