Skip to content

Instantly share code, notes, and snippets.

@tzutalin
Created August 31, 2019 19:18
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 tzutalin/39e5948d16db9d84a8713bc71640c704 to your computer and use it in GitHub Desktop.
Save tzutalin/39e5948d16db9d84a8713bc71640c704 to your computer and use it in GitHub Desktop.
VSCode Global Settings
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
".idea": true,
"bower_components": true,
"dist": true,
"tmp": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/build/**": true,
"**/build": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
".idea": true,
"bower_components": true,
"dist": true,
"node_modules": true,
"public": true,
"tmp": true
},
"git.ignoreLimitWarning": true,
"vim.useSystemClipboard": true,
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment