Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. {
  2. "editor.multiCursorModifier": "ctrlCmd",
  3. "editor.formatOnPaste": false,
  4. "editor.formatOnSave": false,
  5. "autoprefixer.formatOnSave": false,
  6. "minify.minifyExistingOnSave": true,
  7. "php.suggest.basic": false,
  8. "typescript.useCodeSnippetsOnMethodSuggest": true,
  9. "editor.tabCompletion": true,
  10. "editor.snippetSuggestions": "top",
  11. "editor.fontSize": 15,
  12. "editor.fontLigatures": true,
  13. "editor.fontFamily": "DejaVu Sans Mono",
  14. "php.validate.executablePath": "C:/xampp/php/php.exe",
  15. "php-cs-fixer.executablePath": "php-cs-fixer.bat",
  16. "telemetry.enableCrashReporter": false,
  17. "telemetry.enableTelemetry": false,
  18. "workbench.colorTheme": "One Dark Pro Vivid",
  19. "editor.renderWhitespace": "none",
  20. "editor.rulers": [
  21. 80,
  22. 120
  23. ],
  24. "editor.detectIndentation": false,
  25. "workbench.colorCustomizations": {
  26. "activityBar.background": "#2F303D",
  27. "sideBar.background": "#2F303D",
  28. "sideBarSectionHeader.background": "#2F303D",
  29. "tab.activeBackground": "#282A35",
  30. "tab.inactiveBackground": "#2F303D",
  31. "tab.border": "#2F303D",
  32. "editorGroupHeader.tabsBackground": "#2F303D",
  33. "tab.activeBorder": "#2F303D",
  34. "editor.background": "#2F303D"
  35. },
  36. "window.menuBarVisibility": "toggle",
  37. "autoprefixer.browsers": [
  38. "last 3 versions"
  39. ],
  40. "window.zoomLevel": -2,
  41. "workbench.startupEditor": "newUntitledFile",
  42. "php.validate.run": "onType",
  43. "sync.gist": "",
  44. "sync.lastUpload": "2018-01-11T12:22:40.121Z",
  45. "sync.autoDownload": false,
  46. "sync.autoUpload": false,
  47. "sync.lastDownload": "2018-01-05T15:07:41.160Z",
  48. "sync.forceDownload": false,
  49. "sync.anonymousGist": false,
  50. "sync.host": "",
  51. "sync.pathPrefix": "",
  52. "sync.quietSync": false,
  53. "sync.askGistName": false,
  54. "beautify.language": {
  55. "js": {
  56. "type": [
  57. "javascript",
  58. "json"
  59. ],
  60. "filename": [
  61. ".jshintrc",
  62. ".jsbeautify"
  63. ]
  64. },
  65. "css": [
  66. "css",
  67. "scss"
  68. ],
  69. "html": [
  70. "htm",
  71. "html",
  72. ]
  73. },
  74. "workbench.iconTheme": "vscode-icons",
  75. "vsicons.dontShowNewVersionMessage": true,
  76. "path-intellisense.showHiddenFiles": true,
  77. "editor.tabSize": 4,
  78. "editor.lineHeight": 22,
  79. "emmet.includeLanguages": {
  80. "blade": "html",
  81. "php": "html"
  82. },
  83. "emmet.triggerExpansionOnTab": true,
  84. "files.autoSave": "off",
  85. "git.path": "D:/Git/mingw64/libexec/git-core/git.exe",
  86. "php.validate.enable": true,
  87. "git.confirmSync": false,
  88. "git.enableSmartCommit": true,
  89. "editor.insertSpaces": false,
  90. "php-cs-fixer.formatHtml": true,
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement