GamerSK

VSCODE settings

Jan 8th, 2020
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.69 KB | None | 0 0
  1. {
  2.   "workbench.colorTheme": "Legacy - Material Theme Ocean High Contrast",
  3.   "workbench.iconTheme": "material-icon-theme",
  4.   "html-css-class-completion.enableEmmetSupport": true,
  5.   "liveSassCompile.settings.showOutputWindow": false,
  6.   "liveSassCompile.settings.formats": [
  7.     {
  8.       "format": "nested",
  9.       "extensionName": ".css",
  10.       "savePath": "~/../css/"
  11.     },
  12.     {
  13.       "format": "compressed",
  14.       "extensionName": ".min.css",
  15.       "savePath": "~/../css/"
  16.     }
  17.   ],
  18.   "liveSassCompile.settings.autoprefix": [
  19.     "> 1%",
  20.     "last 2 versions"
  21.   ],
  22.   "liveServer.settings.donotShowInfoMsg": true,
  23.   "php.suggest.basic": false,
  24.   "php.executablePath": "C:\\xampp\\php\\php.exe",
  25.   "php.validate.executablePath": "C:\\xampp\\php\\php.exe",
  26.   "editor.defaultFormatter": "esbenp.prettier-vscode",
  27.   "editor.formatOnPaste": true,
  28.   "editor.formatOnSave": true,
  29.   "editor.tabSize": 4,
  30.   "editor.insertSpaces": true,
  31.   "editor.wordWrap": "on",
  32.   "[css]": {
  33.     "editor.tabSize": 2,
  34.   },
  35.   "[scss]": {
  36.     "editor.tabSize": 2,
  37.   },
  38.   "[sass]": {
  39.     "editor.tabSize": 2,
  40.   },
  41.   "[js]": {
  42.     "editor.tabSize": 2,
  43.   },
  44.   "files.insertFinalNewline": true,
  45.   "files.trimTrailingWhitespace": true,
  46.   "files.eol": "\n",
  47.   "css.validate": false,
  48.   "less.validate": false,
  49.   "scss.validate": false,
  50.   "terminal.integrated.shell.windows": "C:\\Windows\\System32\\wsl.exe",
  51.   "files.associations": {
  52.     "*.html": "twig"
  53.   },
  54.   "emmet.includeLanguages": {
  55.     "twig": "html"
  56.   },
  57.   "editor.formatOnSaveTimeout": 5000,
  58.   "files.exclude": {
  59.     "**/var": true
  60.   },
  61.   "files.watcherExclude": {
  62.     "**/var": true
  63.   },
  64.   "search.exclude": {
  65.     "**/var": true
  66.   }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment