Last active
April 8, 2021 18:10
-
-
Save haryelramalho/0c4fcc212a65f7e16ef01bfd89a0db03 to your computer and use it in GitHub Desktop.
vscode settings config file
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": 13, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabSize": 2, | |
"editor.fontSize": 13, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"explorer.compactFolders": false, | |
"editor.renderLineHighlight": "gutter", | |
"workbench.editor.labelFormat": "short", | |
"extensions.ignoreRecommendations": true, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"breadcrumbs.enabled": true, | |
"editor.parameterHints.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"editor.rulers": [80, 420], | |
// "editor.codeActionsOnSave": { | |
// "source.fixAll.eslint": true | |
// }, | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".stylelintrc": "json", | |
".prettierrc": "json" | |
}, | |
"emmet.syntaxProfiles": { "javascript": "jsx" }, | |
"emmet.includeLanguages": { "javascript": "javascriptreact" }, | |
"gitlens.codeLens.recentChange.enabled": false, | |
"gitlens.codeLens.authors.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"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, | |
"material-icon-theme.activeIconPack": "nest", | |
"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", | |
"routes": "routes" | |
}, | |
"material-icon-theme.files.associations": { | |
"ormconfig.json": "database", | |
"tsconfig.json": "tune", | |
"*.proto": "3d" | |
}, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"tabnine.experimentalAutoImports": true, | |
"workbench.activityBar.visible": true, | |
// "[javascript]": { | |
// "editor.codeActionsOnSave": { | |
// "source.fixAll.eslint": true | |
// }, | |
// }, | |
// "[javascriptreact]": { | |
// "editor.codeActionsOnSave": { | |
// "source.fixAll.eslint": true | |
// }, | |
// }, | |
// "[typescript]": { | |
// "editor.codeActionsOnSave": { | |
// "source.fixAll.eslint": true | |
// }, | |
// }, | |
// "[typescriptreact]": { | |
// "editor.codeActionsOnSave": { | |
// "source.fixAll.eslint": true | |
// }, | |
// }, | |
"colorize.languages": [ | |
"javascript", | |
"typescript", | |
"javascriptreact", | |
"typescriptreact", | |
"json", | |
"html", | |
"css" | |
], | |
"workbench.colorTheme": "Dracula", | |
"workbench.editor.enablePreview": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"git.autofetch": true, | |
"window.zoomLevel": -2, | |
// "editor.codeActionsOnSave": null | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment