Guest User

Untitled

a guest
Apr 25th, 2018
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. {
  2. "editor.fontSize": 14,
  3. "editor.fontFamily": "'Source Code Pro For Powerline', Menlo, Monaco, 'Courier New', monospace",
  4. "php.executablePath": "/usr/local/opt/php@7.1/bin/php",
  5. "sublimeTextKeymap.promptV3Features": true,
  6. "editor.multiCursorModifier": "ctrlCmd",
  7. "editor.snippetSuggestions": "top",
  8. "editor.formatOnPaste": true,
  9. "materialTheme.cache.workbench.settings": {
  10. "themeColours": "Palenight High Contrast",
  11. "accent": "Blue"
  12. },
  13. "material-icon-theme.folders.theme": "classic",
  14. "workbench.colorCustomizations": {
  15. "activityBarBadge.background": "#2979FF",
  16. "list.activeSelectionForeground": "#2979FF",
  17. "list.inactiveSelectionForeground": "#2979FF",
  18. "list.highlightForeground": "#2979FF",
  19. "scrollbarSlider.activeBackground": "#2979FF50",
  20. "editorSuggestWidget.highlightForeground": "#2979FF",
  21. "textLink.foreground": "#2979FF",
  22. "progressBar.background": "#2979FF",
  23. "pickerGroup.foreground": "#2979FF",
  24. "tab.activeBorder": "#2979FF",
  25. "notificationLink.foreground": "#2979FF"
  26. },
  27. "workbench.colorTheme": "Material Theme",
  28. "workbench.iconTheme": "material-icon-theme",
  29. "files.associations": {
  30. "*.sql": "sql"
  31. },
  32. "[javascript]": {
  33. "editor.tabSize": 2,
  34. "editor.insertSpaces": true,
  35. "editor.formatOnSave": false,
  36. },
  37. "[javascriptreact]": {
  38. "editor.tabSize": 2,
  39. "editor.insertSpaces": true,
  40. },
  41. "[php]": {
  42. "editor.tabSize": 4,
  43. "editor.formatOnSave": true,
  44. },
  45. "eslint.alwaysShowStatus": true,
  46. "eslint.options": {
  47. "extensions": [
  48. ".html",
  49. ".js",
  50. ".jsx"
  51. ]
  52. },
  53. "eslint.autoFixOnSave": true,
  54. "eslint.nodePath": "~/.nvm/versions/node/v8.9.4/bin/node",
  55. "eslint.validate": [
  56. {
  57. "language": "html",
  58. "autoFix": true
  59. },
  60. {
  61. "language": "javascript",
  62. "autoFix": true
  63. },
  64. {
  65. "language": "javascriptreact",
  66. "autoFix": true
  67. }
  68. ],
  69. "phpformatter.pharPath": "/usr/local/bin/php-cs-fixer",
  70. "phpformatter.phpPath": "/usr/local/opt/php@7.1/bin/php",
  71. "vscode-php-cs-fixer.rules": "@PSR1,@PSR2",
  72. "files.exclude": {
  73. "**/.svn": true,
  74. "**/.hg": true,
  75. "**/CVS": true,
  76. "**/.DS_Store": true,
  77. "**/*.pyc": true,
  78. },
  79. }
Add Comment
Please, Sign In to add comment