Skip to content

Instantly share code, notes, and snippets.

@nachbarshund
Created April 9, 2019 09:14
Show Gist options
  • Save nachbarshund/126a4be7686b2ebced7e92b009ed10ae to your computer and use it in GitHub Desktop.
Save nachbarshund/126a4be7686b2ebced7e92b009ed10ae to your computer and use it in GitHub Desktop.
Decrease CPU usage with VSCode (Helper). Only add this to your settings:
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/tmp": true,
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/bower_components/**": true,
"**/dist/**": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment