Skip to content

Instantly share code, notes, and snippets.

@vitorbritto
Created June 22, 2021 16:56
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 vitorbritto/7311df7d10764489a950d4bed3973f7c to your computer and use it in GitHub Desktop.
Save vitorbritto/7311df7d10764489a950d4bed3973f7c to your computer and use it in GitHub Desktop.
My VS Code Settings
{
"explorer.confirmDelete": false,
"window.zoomLevel": -2,
"guides.enabled": false,
"explorer.confirmDragAndDrop": false,
"[json]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[html]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"typescript.updateImportsOnFileMove.enabled": "never",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.startupEditor": "newUntitledFile",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"editor.minimap.maxColumn": 60,
"git.confirmSync": false,
"todo-tree.tree.showScanModeButton": false,
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1623791490880,
"dateTime.showDayOfMonth": true,
"dateTime.showDayOfWeek": true,
"dateTime.showMonth": true,
"editor.fontSize": 13,
"workbench.iconTheme": "material-icon-theme",
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"workbench.colorTheme": "One Dark Pro",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"todohighlight.keywords": [
{
"text": "DEBUG:",
"color": "#FFFFFF",
"backgroundColor": "#FF0000"
},
{
"text": "REVIEW:",
"color": "#FFFFFF",
"backgroundColor": "#0080FF"
},
{
"text": "NOTE:",
"color": "#000000",
"backgroundColor": "#FFF700"
},
{
"text": "TODO:",
"color": "#000000",
"backgroundColor": "#00FFA6"
}
],
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"domain": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe",
"providers": "include",
"subscribers": "messages",
"cases": "controller",
"kafka": "scripts",
"mappers": "meta",
"_shared": "shared",
"eslint-config": "tools",
"kube": "kubernetes"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.webpack.js": "webpack"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment