Skip to content

Instantly share code, notes, and snippets.

@michelepatrassi
Last active August 24, 2018 12:40
Show Gist options
  • Save michelepatrassi/a521f168c88d19daff833dcb400c9b25 to your computer and use it in GitHub Desktop.
Save michelepatrassi/a521f168c88d19daff833dcb400c9b25 to your computer and use it in GitHub Desktop.
VS code settings
Mac Settings
{
"window.zoomLevel": 0,
"extensions.ignoreRecommendations": false,
"git.enableSmartCommit": true,
"git.autofetch": true,
"tslint.enable": true,
"tslint.jsEnable": true,
"tslint.autoFixOnSave": true,
"tslint.packageManager": "npm",
"editor.fontSize": 12,
"workbench.colorTheme": "Cobalt2",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.quickSuggestions": true,
"emmet.triggerExpansionOnTab": true
}
Windows Settings
{
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.fontFamily": "monospace",
"window.zoomLevel": 0,
"extensions.ignoreRecommendations": false,
"git.enableSmartCommit": true,
"git.autofetch": true,
"tslint.enable": true,
"tslint.jsEnable": true,
"tslint.autoFixOnSave": true,
"tslint.packageManager": "npm",
"editor.fontSize": 14,
"workbench.colorTheme": "Cobalt2",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.quickSuggestions": true,
"emmet.triggerExpansionOnTab": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"eslint.enable": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.closeEmptyGroups": true,
"git.confirmSync": false,
"explorer.confirmDelete": false,
"terminal.integrated.rendererType": "dom"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment