Skip to content

Instantly share code, notes, and snippets.

@jchiatt
Last active July 27, 2018 16:53
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 jchiatt/e37ea4058b8c4784a357f3094859d144 to your computer and use it in GitHub Desktop.
Save jchiatt/e37ea4058b8c4784a357f3094859d144 to your computer and use it in GitHub Desktop.
VS Code settings
// User Settings
{
"workbench.colorTheme": "Night Owl",
"terminal.external.osxExec": "iTerm.app",
"editor.tabSize": 2,
"workbench.startupEditor": "newUntitledFile",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"window.zoomLevel": 1,
"editor.formatOnSave": true,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
// turn off formatOnSave for JavaScript
"[javascript]": {
"editor.formatOnSave": false,
},
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"explorer.confirmDelete": false,
"editor.snippetSuggestions": "top",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly",
"explorer.confirmDragAndDrop": false,
"liveServer.settings.donotShowInfoMsg": true
}
// Workspace settings
{
"git.ignoreLimitWarning": true,
"files.insertFinalNewline": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment