Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. {
  2. "breadcrumbs.enabled": true,
  3. "debug.allowBreakpointsEverywhere": true,
  4. "debug.toolBarLocation": "docked",
  5. "editor.autoClosingBrackets": "always",
  6. "editor.cursorStyle": "block",
  7. "editor.find.autoFindInSelection": true,
  8. "editor.fontFamily": "'DroidSansMono Nerd Font','Fira Code', Menlo, Monaco, 'Courier New', monospace",
  9. "editor.fontLigatures": true,
  10. "editor.fontSize": 13,
  11. "editor.formatOnPaste": true,
  12. "editor.highlightActiveIndentGuide": true,
  13. "editor.renderControlCharacters": true,
  14. "editor.renderIndentGuides": true,
  15. "editor.showFoldingControls": "always",
  16. "editor.snippetSuggestions": "top",
  17. "editor.suggest.localityBonus": true,
  18. "editor.tabCompletion": "on",
  19. "editor.useTabStops": false,
  20. "emmet.triggerExpansionOnTab": true,
  21. "explorer.confirmDelete": false,
  22. "explorer.confirmDragAndDrop": false,
  23. "explorer.openEditors.visible": 0,
  24. "extensions.ignoreRecommendations": true,
  25. "files.associations": {
  26. "*.php": "php",
  27. ".php_cs": "php",
  28. ".php_cs.dist": "php"
  29. },
  30. "files.exclude": {
  31. "**/.DS_Store": true,
  32. "**/.git": true,
  33. "**/.hg": true,
  34. "**/.svn": true,
  35. "**/.vscode": false,
  36. "**/CVS": true,
  37. "**/bower_components": true,
  38. "**/node_modules": false,
  39. "**/tests": true
  40. },
  41. "files.insertFinalNewline": true,
  42. "files.trimFinalNewlines": true,
  43. "files.trimTrailingWhitespace": true,
  44. "git.autofetch": true,
  45. "git.confirmSync": false,
  46. "git.enableSmartCommit": true,
  47. "git.inputValidationLength": 120,
  48. "html.format.indentInnerHtml": true,
  49. "php.suggest.basic": false,
  50. "search.exclude": {
  51. "**/bower_components": true,
  52. "**/node_modules": true,
  53. "storage/framework/views": true
  54. },
  55. "telemetry.enableCrashReporter": false,
  56. "telemetry.enableTelemetry": false,
  57. "workbench.activityBar.visible": true,
  58. "workbench.startupEditor": "newUntitledFile",
  59. "editor.parameterHints.cycle": true,
  60. "editor.fontWeight": "bold",
  61. "editor.formatOnSave": true,
  62. "editor.formatOnType": true,
  63. "workbench.statusBar.feedback.visible": false,
  64. "workbench.editor.highlightModifiedTabs": true,
  65. "workbench.editor.openPositioning": "left",
  66. "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  67. "terminal.integrated.cursorBlinking": true,
  68. "terminal.integrated.fontSize": 16,
  69. "workbench.iconTheme": "material-icon-theme",
  70. "gitProjectManager.baseProjectsFolders": [
  71. "/Users/fernando/Projetos"
  72. ],
  73. "editor.wordWrap": "on",
  74. "editor.cursorSmoothCaretAnimation": true,
  75. "editor.minimap.enabled": false,
  76. "workbench.fontAliasing": "auto",
  77. "workbench.tree.horizontalScrolling": true,
  78. "workbench.editor.tabCloseButton": "left",
  79. "debug.inlineValues": true,
  80. "terminal.external.osxExec": "iTerm2.app",
  81. "terminal.external.windowsExec": "C:\\Program Files\\Git\\bin\\bash.exe",
  82. "terminal.integrated.copyOnSelection": true,
  83. "window.zoomLevel": 0,
  84. "editor.largeFileOptimizations": false,
  85. "files.autoSave": "afterDelay"
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement