Skip to content

Instantly share code, notes, and snippets.

@pedrol2b
Last active June 30, 2024 20:47
Show Gist options
  • Save pedrol2b/c792ffeb1076addf024c3a688ecf5375 to your computer and use it in GitHub Desktop.
Save pedrol2b/c792ffeb1076addf024c3a688ecf5375 to your computer and use it in GitHub Desktop.
VSCode Settings (Updated MacOS)
{
"editor.fontSize": 16,
"editor.lineHeight": 1.8,
"editor.fontFamily": "JetBrains Mono",
"editor.fontWeight": "400",
"editor.fontLigatures": true,
"editor.semanticHighlighting.enabled": false,
"editor.formatOnSave": true,
"editor.largeFileOptimizations": false,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.rulers": [80, 120],
"editor.mouseWheelZoom": true,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.inlineSuggest.enabled": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.accessibilitySupport": "off",
"editor.scrollbar.vertical": "auto",
"editor.hideCursorInOverviewRuler": true,
"editor.minimap.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
},
"editor.tokenColorCustomizations": {
"[*Light*]": {
"textMateRules": [
{
"scope": "ref.matchtext",
"settings": {
"foreground": "#000"
}
}
]
},
"[*Dark*]": {
"textMateRules": [
{
"scope": "ref.matchtext",
"settings": {
"foreground": "#fff"
}
}
]
},
"textMateRules": [
{
"scope": "keyword.other.dotenv",
"settings": {
"foreground": "#FF000000"
}
}
]
},
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.compactFolders": true,
"explorer.sortOrder": "default",
"terminal.integrated.fontSize": 14,
"terminal.integrated.showExitAlert": false,
"terminal.integrated.enableMultiLinePasteWarning": "never",
"terminal.integrated.gpuAcceleration": "off",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.empty.hint": "hidden",
"workbench.productIconTheme": "fluent-icons",
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"workbench.statusBar.visible": false,
"security.workspace.trust.untrustedFiles": "newWindow",
"security.promptForLocalFileProtocolHandling": false,
"tabnine.experimentalAutoImports": true,
"files.autoSave": "onFocusChange",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
".vscode": true,
// "**/node_modules": true
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json",
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".env*": "dotenv"
},
"extensions.ignoreRecommendations": true,
"breadcrumbs.enabled": true,
"cSpell.language": "en,pt,pt_BR",
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!csharp",
"!go",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!latex",
"!php",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!scss"
],
"cSpell.userWords": [],
"cSpell.ignoreWords": [],
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"eslint.codeActionsOnSave.mode": "all",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.suggest.autoImports": true,
"typescript.tsserver.log": "off",
"typescript.updateImportsOnFileMove.enabled": "always",
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.associations": {
"_layout": "layout",
"AsyncStorage": "database",
"def": "container",
"sms": "mail",
"proton": "mail",
"infra": "app",
"entities": "class",
"domain": "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",
"providers": "include",
"subscribers": "messages",
"useCases": "controller",
"kafka": "scripts",
"mappers": "meta",
"_shared": "shared",
"eslint-config": "tools",
"kube": "kubernetes"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.webpack.js": "webpack"
},
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"window.titleBarStyle": "native",
"window.commandCenter": false,
"todo-tree.general.tags": ["BUG", "HACK", "FIXME", "TODO", "XXX", "[ ]", "[x]"],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"prettier.arrowParens": "always",
"prettier.printWidth": 120,
"prettier.bracketSameLine": false,
"prettier.bracketSpacing": true,
"prettier.endOfLine": "auto",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.formatOnType": true
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[prisma]": {
"editor.formatOnSave": true
},
"code-runner.clearPreviousOutput": true,
"code-runner.runInTerminal": true,
"markdown-preview-enhanced.previewTheme": "monokai.css",
"markdown-preview-enhanced.codeBlockTheme": "monokai.css",
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
"yaml": true
},
"css.lint.unknownAtRules": "ignore",
"react-native-tools.showUserTips": false,
"git.openRepositoryInParentFolders": "always",
"git.enableSmartCommit": true,
"jupyter.logging.level": "error",
"update.mode": "start",
"update.showReleaseNotes": false,
"apc.header": {
"height": 36
},
"apc.listRow": {
"height": 24
},
"apc.font.family": "Inter",
"apc.stylesheet": {
".editor-actions": "display: none",
".nosidebar .inline-tabs-placeholder": "width: 75px",
".monaco-list-row": "border-radius: 4px;",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;"
},
"redhat.telemetry.enabled": false,
"tabnine.codeLensEnabled": false,
"workbench.layoutControl.enabled": false,
"GitCommitPlugin.ShowEmoji": false,
"cmake.showOptionsMovedNotification": false,
"prisma.showPrismaDataPlatformNotification": false,
"github.copilot.editor.enableAutoCompletions": true,
"git.confirmSync": false,
"terminal.integrated.env.osx": {
"Q_NEW_SESSION": "1"
},
"vs-kubernetes": {
"vscode-kubernetes.helm-path-mac": "/Users/pedrol2b/.vs-kubernetes/tools/helm/darwin-arm64/helm",
"vscode-kubernetes.minikube-path-mac": "/Users/pedrol2b/.vs-kubernetes/tools/minikube/darwin-arm64/minikube"
},
"tailwindCSS.experimental.classRegex": [
["tv\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment