Skip to content

Instantly share code, notes, and snippets.

@goncadanilo
Last active February 1, 2024 21:07
Show Gist options
  • Save goncadanilo/dc2eea91d810ae1cbb1264694c0097a8 to your computer and use it in GitHub Desktop.
Save goncadanilo/dc2eea91d810ae1cbb1264694c0097a8 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.profiles.osx": "/bin/zsh",
"workbench.colorTheme": "Rosé Pine",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.fontSize": 18,
"editor.lineHeight": 26,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
// "node_modules": true
},
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.rulers": [
80,
120
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json",
".huskyrc": "json",
".lintstagedrc": "json",
"*.mdx": "markdown"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"git.enableSmartCommit": true,
"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",
"application": "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",
"atomic": "react-components",
"use-cases": "functions"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"commit-msg": "console"
},
"gitlens.defaultDateFormat": null,
"[prisma]": {
"editor.formatOnSave": true
},
"[html]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// "[typescript]": {
// "editor.formatOnSave": true,
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "[typescriptreact]": {
// "editor.formatOnSave": true,
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "[javascript]": {
// "editor.formatOnSave": true,
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
// "[javascriptreact]": {
// "editor.formatOnSave": true,
// "editor.defaultFormatter": "esbenp.prettier-vscode"
// },
"git.confirmSync": false,
"diffEditor.ignoreTrimWhitespace": false,
"tabnine.experimentalAutoImports": true,
"cSpell.language": "en,pt",
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!csharp",
"!go",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!latex",
"!php",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!scss"
],
"cSpell.userWords": [
"apigee",
"camelcase",
"CCEL",
"chakra",
"Chakra",
"Cnpj",
"commitlint",
"DANF",
"danfe",
"Danfe",
"Danilo",
"dashgo",
"dtos",
"DUPLIC",
"ecommerce",
"FACEMESH",
"grupoboticario",
"Ignews",
"NDEB",
"nestjs",
"NFEX",
"postgres",
"prebuild",
"prismic",
"Prismic",
"prismicio",
"sideview",
"tailwindcss",
"testid",
"typeorm",
"Workstream",
"Workstreams"
],
"gitlens.codeLens.scopes": [
"document"
],
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true,
"typescriptreact": true,
"html": true,
"typescript": true,
"properties": true
},
"auto-rename-tag.activationOnLanguage": [
"*"
],
"editor.multiCursorModifier": "ctrlCmd",
"bracketPairColorizer.depreciation-notice": false,
"bracket-pair-colorizer-2.depreciation-notice": false,
"git.ignoreRebaseWarning": true,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"editor.accessibilitySupport": "off",
"debug.javascript.terminalOptions": {},
"editor.unicodeHighlight.allowedCharacters": {
"ˆ": true
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.bracketPairColorization.enabled": true,
"workbench.productIconTheme": "fluent-icons",
"workbench.editor.empty.hint": "hidden"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment