Skip to content

Instantly share code, notes, and snippets.

@loick
Last active March 19, 2019 16:04
Show Gist options
  • Save loick/0911b9a1de4774902bd712cbc5b8178e to your computer and use it in GitHub Desktop.
Save loick/0911b9a1de4774902bd712cbc5b8178e to your computer and use it in GitHub Desktop.
VS-code config
{
"emmet.triggerExpansionOnTab": true,
"[javascript]": {
"editor.tabSize": 2,
},
"window.title": "${activeEditorLong}${separator}${rootName}",
"editor.formatOnSave": true,
"window.zoomLevel": 0,
"todohighlight.isEnable": true,
"editor.minimap.enabled": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"javascript.implicitProjectConfig.experimentalDecorators": true,
"editor.renderWhitespace": "all",
"editor.scrollBeyondLastLine": false,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"node_modules/": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"files.defaultLanguage": "markdown",
"gitlens.historyExplorer.enabled": true,
"files.associations": {
"*.css": "postcss"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment