Created
April 2, 2021 16:47
-
-
Save juliocabrera820/9051a6a7c7f1c8be56bac39759ccbae4 to your computer and use it in GitHub Desktop.
configuración vscode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.fontSize": 14, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabSize": 2, | |
"editor.fontSize": 14, | |
"editor.lineHeight": 26, | |
"editor.fontFamily": "cascadia code", | |
"editor.fontLigatures": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"node_modules": true, | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"explorer.compactFolders": false, | |
"editor.renderLineHighlight": "gutter", | |
"workbench.editor.labelFormat": "short", | |
"extensions.ignoreRecommendations": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"breadcrumbs.enabled": true, | |
"editor.parameterHints.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"editor.rulers": [80, 120], | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".stylelintrc": "json", | |
".prettierrc": "json" | |
}, | |
"window.zoomLevel": 0, | |
"emmet.syntaxProfiles": { "javascript": "jsx" }, | |
"emmet.includeLanguages": { "javascript": "javascriptreact" }, | |
"git.enableSmartCommit": true, | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"liveshare.featureSet": "insiders", | |
"typescript.tsserver.log": "verbose", | |
"javascript.suggest.autoImports": true, | |
"typescript.suggest.autoImports": true, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"screencastMode.onlyKeyboardShortcuts": true, | |
"material-icon-theme.folders.associations": { | |
"infra": "app", | |
"entities": "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" | |
}, | |
"material-icon-theme.files.associations": { | |
"ormconfig.json": "database", | |
"tsconfig.json": "tune", | |
"*.proto": "3d" | |
}, | |
"workbench.colorTheme": "Cobalt2", | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#673AB7", | |
"editorCursor.foreground": "#673AB7", | |
"inputValidation.errorBorder": "#673AB7", | |
"panel.border": "#673AB7", | |
"panelTitle.activeBorder": "#673AB7", | |
"panelTitle.activeForeground": "#673AB7", | |
"peekView.border": "#673AB7", | |
"peekViewTitleLabel.foreground": "#673AB7", | |
"tab.activeBorder": "#673AB7", | |
"statusBar.background": "#ffc600", | |
"statusBar.foreground": "#fff", | |
"statusBar.noFolderBackground": "#ffc600", | |
"statusBar.debuggingBackground": "#ffc600" | |
}, | |
"vim.statusBarColorControl": true, | |
"vim.statusBarColors": { | |
"insert": "#D32F2F", | |
"visual": "#ffc600", | |
"normal": "#673AB7", | |
}, | |
"[markdown]": { | |
"editor.defaultFormatter": "yzhang.markdown-all-in-one" | |
}, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment