Skip to content

Instantly share code, notes, and snippets.

@NickyMeuleman
Created July 9, 2018 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NickyMeuleman/3d037565b516d380b9804c5cac2c5ce9 to your computer and use it in GitHub Desktop.
Save NickyMeuleman/3d037565b516d380b9804c5cac2c5ce9 to your computer and use it in GitHub Desktop.
VSCode settings.json
{
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.fontSize": 18,
"terminal.integrated.fontSize": 18,
"editor.renderWhitespace": "all",
"window.menuBarVisibility": "toggle",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "consolas",
"files.eol": "\n",
"editor.snippetSuggestions": "top",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "javascriptreact"
},
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": true
},
"prettier.disableLanguages": [
"js"
],
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
// tslint autofix is buggy atm
"tslint.autoFixOnSave": false,
"tslint.alwaysShowStatus": true,
"workbench.iconTheme": "material-icon-theme",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": false,
"markdown.extension.italic.indicator": "_",
"workbench.colorTheme": "Night Owl",
"editor.largeFileOptimizations": false,
"window.zoomLevel": 0,
"editor.formatOnPaste": true,
"editor.formatOnType": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment