Skip to content

Instantly share code, notes, and snippets.

@cristofersousa
Created July 27, 2022 23:13
Show Gist options
  • Save cristofersousa/1ac33db4d954cd16f4ce65ac1abb813a to your computer and use it in GitHub Desktop.
Save cristofersousa/1ac33db4d954cd16f4ce65ac1abb813a to your computer and use it in GitHub Desktop.
{
"editor.rulers": [100],
"files.autoSave": "afterDelay",
"extensions.ignoreRecommendations": true,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 24,
"eslint.validate": [
"javascript",
"javascriptreact",
"vue"
],
"explorer.confirmDragAndDrop": true,
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.fontSize": 14,
"editor.suggestSelection": "first",
"workbench.editor.enablePreview": false,
"workbench.editor.labelFormat": "short",
"workbench.editor.enablePreviewFromQuickOpen": false,
"emmet.includeLanguages": {
"html": "html",
"javascript": "javascriptreact",
"vue-html": "html",
"vue": "html"
},
"emmet.showAbbreviationSuggestions": true,
"emmet.showExpandedAbbreviation": "always",
"workbench.iconTheme": "material-icon-theme",
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"[html]": {
"editor.formatOnSave": false
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.quickSuggestions": {
"strings": true,
},
"liveServer.settings.donotShowInfoMsg": true,
"explorer.compactFolders": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"bracketPairColorizer.consecutivePairColors": [
"()",
"[]",
"{}",
[
"<",
"</"
],
[
"<",
"/>"
],
[
"Gold",
"Orchid",
"LightSkyBlue"
],
"Red"
],
"git.suggestSmartCommit": false,
"guides.enabled": false,
"gitlens.advanced.messages": {
"suppressCommitNotFoundWarning": true
},
"workbench.editorAssociations": {
"git-rebase-todo": "default"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.maxMemoryForLargeFilesMB": 80000,
"splitHTMLAttributes.closingBracketOnNewLine": true,
"splitHTMLAttributes.sortOrder": [
"^v-if", "^v-else", "^v-show", "^v-model", "^v-for", "^:key", "^key", "^v-", "^:", "^@click", "^@", "^id", "^class", "^.*=\""
],
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"gitblame.pluralWebPathSubstrings": [
"bitbucket",
"atlassian",
"gitlab"
],
"[javascript]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"workbench.colorTheme": "FireFly Pro Bright",
"redhat.telemetry.enabled": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"security.workspace.trust.untrustedFiles": "open",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.external.osxExec": "iTerm2.app",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"window.zoomLevel": 1,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment