Created
May 31, 2018 14:22
-
-
Save ynotdraw/589f5b9a9cf6834e384908775f495ad6 to your computer and use it in GitHub Desktop.
Default VS Code Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.zoomLevel": 2, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/node_modules": true, | |
"dist": true, | |
"tmp": true, | |
"packages/**/tmp": true, // lerna package dirs | |
"packages/**/dist": true // lerna package dirs | |
}, | |
"editor.tabSize": 2, | |
"files.trimTrailingWhitespace": true, | |
"git.autofetch": true, | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/node_modules/**": true, | |
"**/bower_components": true, | |
"**/deps": true, | |
"**/_build": true, | |
"**/tmp": true, | |
"**/dist": true, | |
"**/gradle": true, | |
"**/build": true, | |
"**/bin": true, | |
"**/*.har": true, | |
"packages/**/tmp": true, // lerna package dirs | |
"packages/**/dist": true // lerna package dirs | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/deps": true, | |
"**/_build": true, | |
"**/.git": true, | |
"**/tmp": true, | |
"**/dist": true, | |
"**/gradle": true, | |
"**/build": true, | |
"**/bin": true, | |
"packages/**/tmp": true, // lerna package dirs | |
"packages/**/dist": true // lerna package dirs | |
}, | |
"gitlens.historyExplorer.enabled": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment