Skip to content

Instantly share code, notes, and snippets.

@ymulenll
Created March 2, 2024 03:53
Show Gist options
  • Save ymulenll/ba7e350a3b9b707320afbbdfd785c511 to your computer and use it in GitHub Desktop.
Save ymulenll/ba7e350a3b9b707320afbbdfd785c511 to your computer and use it in GitHub Desktop.
My Visual Studio Code configurations
{
"cSpell.language": "en,es-ES",
"diffEditor.ignoreTrimWhitespace": false,
"dotenv.enableAutocloaking": false,
"editor.accessibilitySupport": "off",
"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.guides.bracketPairs": "active",
"editor.inlineSuggest.enabled": true,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.stickyScroll.enabled": true,
"editor.suggest.preview": true,
"editor.suggest.showMethods": true,
"editor.tabSize": 2,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
"explorer.fileNesting.patterns": {
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts, ${capture}.css, ${capture}.module.css, ${capture}.scss, ${capture}.module.scss",
"*.jsx": "${capture}.js, ${capture}.css, ${capture}.scss, ${capture}.module.scss, ${capture}.css, ${capture}.module.css, ${capture}.test.js, ${capture}.spec.js, ${capture}.test.jsx, ${capture}.spec.jsx",
"*.ts": "${capture}.js, ${capture}.test.ts, ${capture}.spec.ts",
"*.tsx": "${capture}.ts, ${capture}.css, ${capture}.scss, ${capture}.module.scss, ${capture}.css, ${capture}.module.css, ${capture}.test.ts, ${capture}.spec.ts, ${capture}.test.tsx, ${capture}.spec.tsx",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb",
"tsconfig.json": "tsconfig.*.json"
},
"files.associations": {
".env*": "dotenv"
},
"files.autoSave": "afterDelay",
"files.autoSaveWhenNoErrors": true,
"git.autofetch": true,
"git.branchProtection": ["develop", "master", "main"],
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.mergeEditor": true,
"git.pullBeforeCheckout": true,
"github.copilot.enable": {
"*": true,
"markdown": true,
"plaintext": false,
"scminput": false
},
"javascript.preferences.useAliasesForRenames": false,
"reactSnippets.settings.importReactOnTop": false,
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorWidth": 2,
"terminal.integrated.env.osx": {
"CW_NEW_SESSION": "1",
"FIG_NEW_SESSION": "1"
},
"terminal.integrated.rightClickBehavior": "copyPaste",
"terminal.integrated.stickyScroll.enabled": true,
"terminal.integrated.tabs.focusMode": "singleClick",
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.preferences.preferTypeOnlyAutoImports": true,
"typescript.preferences.useAliasesForRenames": false,
"window.newWindowDimensions": "maximized",
"window.zoomLevel": 2,
"workbench.colorTheme": "Cobalt2 Theme Tweaked",
"workbench.editor.pinnedTabsOnSeparateRow": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "none",
"workbench.tree.enableStickyScroll": true,
"zenMode.centerLayout": false,
"zenMode.hideLineNumbers": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment