Skip to content

Instantly share code, notes, and snippets.

@LuisdelaVega
Last active July 11, 2022 15:51
Show Gist options
  • Save LuisdelaVega/e7959b3c6bc9c9160b23a3c1e70aabb3 to your computer and use it in GitHub Desktop.
Save LuisdelaVega/e7959b3c6bc9c9160b23a3c1e70aabb3 to your computer and use it in GitHub Desktop.
My settings for vscode
{
// Editor look and feel
"editor.tabSize": 2,
"editor.wordWrap": "on",
"workbench.colorTheme": "One Dark Pro",
"workbench.startupEditor": "newUntitledFile",
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
// Formatting on save
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": true
},
"editor.formatOnSave": true,
"files.autoSave": "onFocusChange",
"files.associations": {
"*.env.*": "env",
},
// ESLINT
// "eslint.alwaysShowStatus": true,
// Javascript
"javascript.updateImportsOnFileMove.enabled": "always",
// TODO Tree
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"TODO-LUIS",
"[ ]",
"[x]"
],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"**/*.keep": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment