Skip to content

Instantly share code, notes, and snippets.

@Wesley-Sampaio
Last active July 4, 2022 22:21
Show Gist options
  • Save Wesley-Sampaio/7e1ad02b81b337b01e26a2e5df4feff9 to your computer and use it in GitHub Desktop.
Save Wesley-Sampaio/7e1ad02b81b337b01e26a2e5df4feff9 to your computer and use it in GitHub Desktop.
VSCode Settings
{
// Security
"security.workspace.trust.untrustedFiles": "newWindow",
// Fonts
"editor.fontSize": 16,
"editor.tabSize": 2,
"editor.lineHeight": 26,
"editor.fontLigatures": true,
"editor.fontFamily": "",
// Bookmarks
"bookmarks.saveBookmarksInProject": true,
// Discord Presence
"discord.detailsIdling": "📁 Procurando nos Arquivos....",
"discord.detailsEditing": "👨‍💻 {file_name} with {file_size}",
"discord.largeImageIdling": "🌚 Código, Café e Pomodoro",
"discord.lowerDetailsDebugging": "Debugging: {git_branch}",
"discord.lowerDetailsEditing": "Project: {workspace}",
"discord.lowerDetailsIdling": "🕡 Hora do café",
"discord.lowerDetailsNoWorkspaceFound": "{file_size}",
// Terminal Linux
"terminal.integrated.fontSize": 14,
//"terminal.integrated.shell.linux": "/bin/bash",
// Git lens
"gitlens.defaultDateShortFormat": null,
"gitlens.defaultTimeFormat": null,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
// Git
"git.confirmSync": false,
"git.autofetch": true,
"git.enableSmartCommit": true,
// Live Share
"liveshare.featureSet": "insiders",
// Material Theme
"material-icon-theme.activeIconPack": "nest",
"material-icon-theme.folders.associations": {
"adapters": "contract",
"grpc": "pipe",
"kube": "kubernetes",
"main": "lib",
"websockets": "pipe",
"implementations": "core",
"protos": "pipe",
"entities": "class",
"kafka": "pipe",
"use-cases": "functions",
"migrations": "tools",
"schemas": "class",
"useCases": "functions",
"eslint-config": "tools",
"typeorm": "database",
"_shared": "shared",
"mappers": "meta",
"fakes": "mock",
"modules": "components",
"subscribers": "messages",
"domain": "class",
"protocols": "contract",
"infra": "app",
"view-models": "views",
"presentation": "template",
"dtos": "typescript",
"http": "container",
"providers": "include",
"factories": "class",
"repositories": "mappings"
},
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"material-icon-theme.files.associations": {
"tsconfig.json": "tune",
"*.webpack.js": "webpack",
"*.proto": "3d",
"ormconfig.json": "database"
},
// Formate
"[prisma]": {
"editor.formatOnSave": true
},
"editor.formatOnPaste": true,
"editor.formatOnType": true,
// Theme
"workbench.colorTheme": "Omni",
"glassit.alpha": 245,
//"window.zoomLevel": -1,
"workbench.iconTheme": "material-icon-theme",
"polacode.backgroundColor": "#6633CC",
// Window
"workbench.sideBar.location": "left",
// Folders
"explorer.compactFolders": false,
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.git": true
},
// Files
"explorer.confirmDelete": false,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".prettierrc": "json"
},
//Javascript && Typescript
"typescript.tsserver.log": "off",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
// Editor
"screencastMode.onlyKeyboardShortcuts": true,
"workbench.startupEditor": "newUntitledFile",
"editor.inlineSuggest.enabled": true,
"explorer.confirmDragAndDrop": false,
"editor.semanticHighlighting.enabled": false,
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"editor.rulers": [
80,
120
],
"tabnine.experimentalAutoImports": true,
"cSpell.userWords": [
"chakra",
"IUGU",
"middlewares",
"mixpanel",
"Onboarded",
"prefetch",
"rocketseat",
"upsert"
],
"editor.renderLineHighlight": "gutter",
"editor.suggestSelection": "first",
"cSpell.language": "en,pt",
"terminal.integrated.fontFamily": "monospace",
"terminal.integrated.showExitAlert": false,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!csharp",
"!go",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!latex",
"!php",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!scss"
],
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
// "source.organizeImports": true
},
"liveServer.settings.donotShowInfoMsg": true,
"editor.accessibilitySupport": "off",
"workbench.productIconTheme": "fluent-icons",
//indentation
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment