Skip to content

Instantly share code, notes, and snippets.

@ne2da
Created April 23, 2021 08:05
Show Gist options
  • Save ne2da/97c425403a3425dfaa2e7a1f196c7381 to your computer and use it in GitHub Desktop.
Save ne2da/97c425403a3425dfaa2e7a1f196c7381 to your computer and use it in GitHub Desktop.
Базовые настройки для IDE Visual Studio Code для комфортной web-разработки
{
"editor.linkedEditing": true,
"emmet.triggerExpansionOnTab": true,
"editor.wordWrap": "wordWrapColumn",
"editor.mouseWheelZoom": true,
"editor.fontLigatures": true,
"editor.fontFamily": "'Fira Code', 'Operator Mono', Consolas, 'Courier New', monospace",
"editor.fontSize": 15,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.alwaysShowStatus": true,
"files.autoSaveDelay": 2000,
"files.autoSave": "onFocusChange",
"workbench.colorTheme": "Monokai Pro",
"workbench.iconTheme": "Monokai Pro Icons"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment