Skip to content

Instantly share code, notes, and snippets.

@cacaudev
Last active September 4, 2020 20:46
Show Gist options
  • Save cacaudev/97657ed5a3f767671cf9f495b215d1bd to your computer and use it in GitHub Desktop.
Save cacaudev/97657ed5a3f767671cf9f495b215d1bd to your computer and use it in GitHub Desktop.
My Visual Studio Code Config
[user]
email = my_email
name = cacaudev
[push]
default = current
[pull]
default = current
[color]
ui = true
[color "status"]
added = green
changed = yellow
untracked = red
[color "branch"]
current = white
remote = red
[color "diff"]
meta = yellow
old = red
new = green
[alias]
ci = commit
co = checkout
cm = checkout master
cb = checkout -b
st = status -sb
module.exports = {
tabWidth: 2,
doubleQuote: true,
bracketSpacing: true,
printWidth: 90,
trailingComma: "all",
arrowParens: "always",
semi: true,
};
{
"workbench.iconTheme": "material-icon-theme",
"breadcrumbs.enabled": false,
"editor.renderWhitespace": "none",
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"git.confirmSync": false,
"sync.gist": "d8846ce3c5a5c38c8ae6b8229d0e7410",
"editor.minimap.enabled": false,
"editor.fontFamily": "\"Fira Code\", 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"editor.foldingStrategy": "indentation",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.suggestSelection": "first",
"workbench.colorTheme": "SynthWave '84",
"window.zoomLevel": 0,
"javascript.suggest.completeJSDocs": true,
"explorer.confirmDelete": false,
"markdown-preview-enhanced.printBackground": true,
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.forceUpload": true,
"sync.quietSync": true,
"sync.forceDownload": true,
"fileheader.Author": "cacaudev",
"fileheader.LastModifiedBy": "cacaudev",
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"files.autoSave": "off",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"material-icon-theme.folders.associations": {
"domain": "core",
"infra": "app",
"infrastructure": "app",
"entities": "class",
"schemas": "coverage",
"typeorm": "database",
"orm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"dtos": "typescript",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe",
"webserver": "public",
"interfaces": "components",
"application": "class",
"adapters": "tools",
"useCases": "content",
"composers": "packages",
"implementations": "resource",
"definitions": "helper",
"types": "custom",
"cryptography": "secure",
"seeds": "meta",
"seeders": "meta"
},
"powermode.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment