Created
December 22, 2021 00:26
-
-
Save ryanzhou7/53eab9ef2f3437cc1340b7afd4ba2826 to your computer and use it in GitHub Desktop.
Vscode settings
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
{ | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"editor.detectIndentation": true, | |
"editor.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.rulers": [80], | |
"editor.snippetSuggestions": "top", | |
"editor.wordBasedSuggestions": false, | |
"editor.suggest.localityBonus": true, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.suggestSelection": "recentlyUsed", | |
"editor.suggest.showKeywords": false | |
}, | |
"editor.renderWhitespace": "boundary", | |
"files.exclude": { | |
"USE_GITIGNORE": true | |
}, | |
"files.defaultLanguage": "{activeEditorLanguage}", | |
"javascript.validate.enable": false, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/coverage": true, | |
"**/dist": true, | |
"**/build": true, | |
"**/.build": true, | |
"**/.gh-pages": true | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": false | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"eslint.options": {}, | |
"workbench.iconTheme": "material-icon-theme", | |
"breadcrumbs.enabled": true, | |
"grunt.autoDetect": "off", | |
"gulp.autoDetect": "off", | |
"npm.runSilent": true, | |
"explorer.confirmDragAndDrop": false, | |
"editor.formatOnPaste": false, | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.smoothScrolling": true, | |
"php.suggest.basic": false, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"editor.guides.bracketPairs": "active", | |
"editor.bracketPairColorization.enabled": true, | |
"workbench.colorCustomizations": { | |
"editorBracketHighlight.foreground1": "#5caeef", | |
"editorBracketHighlight.foreground2": "#dfb976", | |
"editorBracketHighlight.foreground3": "#c172d9", | |
"editorBracketHighlight.foreground4": "#4fb1bc", | |
"editorBracketHighlight.foreground5": "#97c26c", | |
"editorBracketHighlight.foreground6": "#abb2c0", | |
"editorBracketHighlight.unexpectedBracket.foreground": "#db6165" | |
}, | |
"markdown.extension.preview.autoShowPreviewToSide": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment