Skip to content

Instantly share code, notes, and snippets.

@vicasas
Created June 21, 2021 17:04
Show Gist options
  • Save vicasas/07375f17596c4b0f962bc4f89005caf3 to your computer and use it in GitHub Desktop.
Save vicasas/07375f17596c4b0f962bc4f89005caf3 to your computer and use it in GitHub Desktop.
Config vscode
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontWeight": "300",
"editor.fontSize": 12,
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"workbench.editor.highlightModifiedTabs": true,
"workbench.iconTheme": "material-icon-theme",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/.next": true
},
"files.exclude": {
"**/node_modules": true,
"**/.next": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"terminal.integrated.tabs.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment