Skip to content

Instantly share code, notes, and snippets.

@DaviGn
Created January 17, 2022 23:51
Show Gist options
  • Save DaviGn/de6e96ab1340638188e683b968803dc7 to your computer and use it in GitHub Desktop.
Save DaviGn/de6e96ab1340638188e683b968803dc7 to your computer and use it in GitHub Desktop.
VSCode settings
{
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"workbench.editor.labelFormat": "short",
"workbench.startupEditor": "newUntitledFile",
"editor.renderLineHighlight": "gutter",
"editor.parameterHints.enabled": false,
"editor.rulers": [80, 120],
"editor.tokenColorCustomizations": {
"semanticHighlighting": false
},
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true
},
"editor.suggestSelection": "first",
"explorer.autoReveal": false,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
// icons
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"seeds": "environment",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"websocket": "pipe",
"protos": "pipe",
"grpc": "pipe",
"icons": "svg",
"images": "images",
"imagens": "images"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d"
},
// Font Settings
"editor.tabSize": 2,
"editor.lineHeight": 24,
"editor.fontLigatures": true,
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"prettier.singleQuote": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Terminal settings
"terminal.integrated.fontSize": 14,
"timeline.excludeSources": [],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"security.workspace.trust.untrustedFiles": "open",
"workbench.colorTheme": "Omni",
"workbench.colorCustomizations": {
"[Omni*]": {
"activityBar.background": "#000",
"editor.background": "#000",
"sideBar.background": "#000",
"terminal.background": "#000",
"editorGroupHeader.tabsBackground": "#000",
"editorGroupHeader.border": "#000",
"editorGroup.border": "#000",
"tab.activeBackground": "#000",
"tab.inactiveBackground": "#111",
"menu.background": "#000",
"statusBar.background": "#000"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment