Last active
May 3, 2021 06:07
-
-
Save tsolar/2fee71bedcc861385d2b4fd1809b5d86 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"editor.formatOnType": false, | |
"editor.wordBasedSuggestions": false, | |
"editor.trimAutoWhitespace": false, | |
"gitlens.hovers.avatars": false, | |
"gitlens.hovers.currentLine.details": false, | |
"window.zoomLevel": 0, | |
"window.openFoldersInNewWindow": "on", | |
"prettier.eslintIntegration": true, | |
"javascript.suggestionActions.enabled": false, | |
"eslint.validate": [ | |
"html", | |
"css", | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
{ "language": "vue", "autoFix": true }, | |
{ "language": "vue-html", "autoFix": true } | |
], | |
"prettier.semi": false, | |
"prettier.singleQuote": true, | |
"vetur.validation.template": false, | |
"vetur.format.defaultFormatter.js": "prettier-eslint", | |
"editor.fontSize": 18, | |
"editor.formatOnSave": false, | |
"editor.formatOnPaste": false, | |
"terminal.integrated.fontSize": 16, | |
"editor.fontFamily": "Inconsolata, 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"workbench.iconTheme": "material-icon-theme", | |
"breadcrumbs.enabled": true, | |
"terminal.integrated.fontFamily": "Inconsolata for Powerline for Powerline", | |
"workbench.editor.enablePreview": false, | |
"path-intellisense.mappings": { | |
"@": "${workspaceRoot}/src" | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"gitlens.views.repositories.location": "gitlens", | |
"gitlens.views.fileHistory.location": "gitlens", | |
"gitlens.views.lineHistory.location": "gitlens", | |
"gitlens.views.compare.location": "gitlens", | |
"gitlens.views.search.location": "gitlens", | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"ruby.rubocop.executePath": "", | |
"workbench.colorTheme": "Atom One Dark", | |
"gitlens.blame.separateLines": false, | |
"gitlens.hovers.currentLine.changes": false, | |
"clipboard-manager.snippet.enabled": false, | |
"telemetry.enableCrashReporter": false, | |
"ruby.rubocop.useBundler": true, | |
"indentRainbow.colors": [ | |
"rgba(16,16,16,0.1)", | |
"rgba(16,16,16,0.3)", | |
"rgba(16,16,16,0.6)", | |
"rgba(16,16,16,0.4)", | |
"rgba(16,16,16,0.2)" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment