Skip to content

Instantly share code, notes, and snippets.

@danileao
Last active August 1, 2023 17:44
Show Gist options
  • Save danileao/76575e08f192c6314efb7dbd298a2364 to your computer and use it in GitHub Desktop.
Save danileao/76575e08f192c6314efb7dbd298a2364 to your computer and use it in GitHub Desktop.
{
"keyboard.dispatch": "keyCode",
// Define o tema do VSCode
"workbench.colorTheme": "Omni",
// Aumenta a fonte do terminal
"terminal.integrated.fontSize": 14,
// Define o tema dos icones na sidebar
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
// Configura tamanho e familia da fonte
"editor.tabSize": 2,
"editor.fontSize": 17,
"editor.lineHeight": 24,
// "editor.fontFamily": "Fira Code",
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"editor.suggestSelection": "first",
"javascript.suggest.autoImports": true,
// "typescript.suggest.autoImports": true,
"editor.rulers": [90, 110],
"editor.formatOnSave": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescript]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[hbs]": {
"editor.formatOnSave": true
},
"prettier.eslintIntegration": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"njk": "html"
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
"gitlens.hovers.currentLine.over": "line",
"gitlens.defaultDateStyle": "absolute",
"gitlens.codeLens.enabled": false,
"git.suggestSmartCommit": false,
"git.autofetch": true,
"git.confirmSync": false,
"diffEditor.ignoreTrimWhitespace": true,
"material-icon-theme.folders.color": "#ef5350",
"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",
"in-memory": "mock",
"java": "core",
"cms": "core",
"default": "core",
"presentation": "content",
"main": "core",
"domain": "class",
"*": "core",
"usecases": "controller",
"websocket": "pipe"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"swagger.json": "lib"
},
"material-icon-theme.languages.associations": {
"java": "java"
},
"editor.minimap.enabled": false,
"material-icon-theme.folders.theme": "specific",
"material-icon-theme.activeIconPack": "react",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -javaagent:\"/home/dany/.vscode/extensions/gabrielbb.vscode-lombok-1.0.1/server/lombok.jar\"",
"java.home": "/usr/lib/jvm/java-11-openjdk-amd64",
"java.configuration.runtimes": [
{
"name": "JavaSE-1.8",
"path": "/usr/lib/jvm/java-8-openjdk-amd64"
},
{
"name": "JavaSE-11",
"path": "/usr/lib/jvm/java-11-openjdk-amd64",
"default": true
}
],
"java.semanticHighlighting.enabled": true,
"java.configuration.checkProjectSettingsExclusions": false,
"maven.executable.path": "/usr/share/maven/bin/mvn",
"terminal.integrated.shell.linux": "/usr/bin/zsh",
// "[java]": {
// "editor.defaultFormatter": "redhat.java",
// "editor.formatOnSave": true,
// "editor.codeActionsOnSave": {
// "source.fixAll.eslint": true
// }
// },
"liveServer.settings.donotShowInfoMsg": true,
"tabnine.experimentalAutoImports": true,
"editor.renderControlCharacters": true,
"workbench.statusBar.visible": true,
"git.terminalAuthentication": false,
"react-native.packager.port": 19001,
"terminal.integrated.fontFamily": "JetBrains Mono",
"editor.wordWrap": "on",
"java.project.importHint": false,
"files.exclude": {
"**/.git": false,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": false,
"**/listRentalsByUser": false,
"**/profileUserUseCase": true
},
"window.titleBarStyle": "native",
"liveServer.settings.donotVerifyTags": true,
"aws.profile": "profile:default",
"dynamo.showExplorer": true,
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment