Last active
April 25, 2023 06:46
-
-
Save ajerez/187b89bc075514a915bd14a877003278 to your computer and use it in GitHub Desktop.
VSCode Preferences
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.fontAliasing": "default", | |
"editor.minimap.enabled": true, | |
"editor.minimap.renderCharacters": false, | |
"editor.tabSize": 2, | |
"files.autoSave": "off", | |
"javascript.implicitProjectConfig.checkJs": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"extensions.autoUpdate": true, | |
"telemetry.enableTelemetry": false, | |
"html.suggest.angular1": false, | |
"html.suggest.ionic": false, | |
"explorer.openEditors.visible": 0, | |
"explorer.autoReveal": false, | |
"workbench.welcome.enabled": false, | |
"gitlens.blame.annotation.style": "compact", | |
"gitlens.blame.annotation.highlight": "none", | |
"gitlens.blame.annotation.sha": false, | |
"gitlens.blame.annotation.activeLine": "off", | |
"gitlens.codeLens.visibility": "off", | |
"workbench.colorTheme": "Night Owl (No Italics)", | |
"workbench.editor.closeOnFileDelete": false, | |
"gitlens.blame.line.enabled": false, | |
"window.zoomLevel": 0, | |
"workbench.sideBar.location": "left", | |
"workbench.colorCustomizations": { | |
"editorCursor.foreground": "#4EB8F8" | |
}, | |
"gitlens.gitExplorer.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.hovers.currentLine.enabled": false, | |
"gitlens.keymap": "none", | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"gitlens.historyExplorer.enabled": false, | |
"vetur.format.defaultFormatter.js": "prettier", | |
"vetur.format.defaultFormatter.html": "prettier", | |
"vetur.format.defaultFormatter.less": "prettier", | |
"vetur.validation.template": false, | |
"vetur.validation.style": false, | |
"vetur.validation.script": false, | |
"javascript.format.insertSpaceBeforeFunctionParenthesis": true, | |
"eslint.autoFixOnSave": true, | |
"eslint.validate": [ | |
{ | |
"language": "vue", | |
"autoFix": true | |
}, | |
{ | |
"language": "html", | |
"autoFix": true | |
}, | |
{ | |
"language": "javascript", | |
"autoFix": true | |
} | |
], | |
"gitlens.views.repositories.enabled": false, | |
"gitlens.views.fileHistory.enabled": false, | |
"gitlens.views.lineHistory.enabled": false, | |
"bracket-pair-colorizer-2.showBracketsInGutter": true, | |
"bracket-pair-colorizer-2.showHorizontalScopeLine": false, | |
"bracket-pair-colorizer-2.forceUniqueOpeningColor": true, | |
"bracket-pair-colorizer-2.forceIterationColorCycle": true, | |
"bracket-pair-colorizer-2.colors": [ | |
"#7CBFE9" | |
], | |
"editor.renderWhitespace": "none", | |
"editor.renderControlCharacters": true, | |
"breadcrumbs.enabled": false, | |
"workbench.activityBar.visible": true, | |
"editor.wordWrapColumn": 120, | |
"editor.copyWithSyntaxHighlighting": false, | |
"editor.rulers": [ | |
120 | |
], | |
"files.trimTrailingWhitespace": false, | |
"terminal.explorerKind": "external", | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.fontFamily": "'Meslo LG M for Powerline', Menlo, Monaco, 'Courier New', monospace", | |
"git.confirmSync": false, | |
"workbench.statusBar.feedback.visible": false, | |
"editor.fontLigatures": true, | |
"terminal.integrated.cursorBlinking": true, | |
"workbench.iconTheme": "ayu" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment