Skip to content

Instantly share code, notes, and snippets.

@brunobertolini
Last active April 27, 2022 16:46
Show Gist options
  • Save brunobertolini/8968487cff8ecd93dbd1d6c1787424b9 to your computer and use it in GitHub Desktop.
Save brunobertolini/8968487cff8ecd93dbd1d6c1787424b9 to your computer and use it in GitHub Desktop.
{
"editor.suggestSelection": "first",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"github.copilot.enable": {
"yaml": false,
"*": true,
"plaintext": true,
"markdown": false
},
"workbench.panel.defaultLocation": "right",
"editor.accessibilitySupport": "off",
"editor.fontLigatures": true,
"colorize.languages": ["javascript", "css"],
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"explorer.experimental.fileNesting.enabled": true,
"explorer.experimental.fileNesting.patterns": {
"*.jsx": "$(capture).js, $(capture).test.jsx, $(capture).spec.jsx",
"*.tsx": "$(capture).js, $(capture).test.tsx, $(capture).spec.tsx",
"*.js": "$(capture).js, $(capture).test.js, $(capture).spec.js",
"*.ts": "$(capture).js, $(capture).test.ts, $(capture).spec.ts"
},
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/.git": true,
"**/.rts*": true,
"**/.svn": true,
"**/.next": true,
"**/.docz": true
},
"workbench.colorTheme": "lucy",
"tailwindCSS.experimental.classRegex": [
"tailed`([^`]*)",
"tailed\\(.*?\\)`([^`]*)",
"tail`([^`]*)"
],
"sync.forceDownload": true,
"explorer.compactFolders": false,
"terminal.integrated.fontSize": 12,
"vsicons.dontShowNewVersionMessage": true,
"editor.autoClosingQuotes": "always",
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"sync.quietSync": true,
"terminal.explorerKind": "external",
"sync.gist": "7b391834ddaa0fc3fdb713f16db1ea8b",
"editor.inlineSuggest.enabled": true,
"sync.autoUpload": true,
"editor.wordWrapColumn": 120,
"markdown.extension.toc.levels": "2..6",
"typescript.updateImportsOnFileMove.enabled": "always",
"tailwindCSS.includeLanguages": {
"typescriptreact": "javascript",
"typescript": "javascript"
},
"workbench.sideBar.location": "left",
"sync.autoDownload": true,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editorAssociations": {
"git-rebase-todo": "default"
},
"editor.minimap.enabled": false,
"workbench.iconTheme": "vscode-icons",
"markdown.extension.tableFormatter.normalizeIndentation": true,
"terminal.integrated.tabs.enabled": true,
"[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"
},
"breadcrumbs.enabled": true,
"workbench.startupEditor": "newUntitledFile",
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.quickSuggestions": {
"strings": true
},
"terminal.integrated.fontFamily": "'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"workbench.activityBar.visible": true,
"diffEditor.ignoreTrimWhitespace": false,
"sync.forceUpload": true,
"workspaceExplorer.workspaceStorageDirectory": "/Users/brunobertolini/Work/.vscode/workspaces",
"redhat.telemetry.enabled": false,
"prettier.requireConfig": true,
"editor.formatOnSave": true,
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment