Skip to content

Instantly share code, notes, and snippets.

@Oliver-ke
Created August 18, 2019 01:36
Show Gist options
  • Save Oliver-ke/0e8e782d5be38c9881b67b18ea5bcf6c to your computer and use it in GitHub Desktop.
Save Oliver-ke/0e8e782d5be38c9881b67b18ea5bcf6c to your computer and use it in GitHub Desktop.
Vscode editor settings
{
"window.zoomLevel": 1,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.wordWrap": "bounded",
"editor.trimAutoWhitespace": true,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.formatOnSave": true,
"files.autoSave": "onFocusChange",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"eslint.autoFixOnSave": true,
"eslint.validate": ["javascript", "javascriptreact"],
"javascript.validate.enable": true,
"git.enableSmartCommit": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"gitlens.historyExplorer.enabled": true,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.sideBar.location": "left",
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": "/dist/css"
}
],
"files.eol": "\n",
"explorer.confirmDragAndDrop": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment