Last active
November 22, 2021 02:04
-
-
Save ifyour/ff9df95c543c76f16a518b3603630d2a to your computer and use it in GitHub Desktop.
手动保存 VSCode 配置文件
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.startupEditor": "none", | |
"editor.fontSize": 13.5, | |
"editor.fontFamily": "Victor Mono", | |
"editor.fontLigatures": true, | |
"editor.lineHeight": 24, | |
"editor.tabSize": 2, | |
"git.confirmSync": false, | |
"editor.guides.bracketPairs": false, | |
"git.autofetch": true, | |
"terminal.integrated.copyOnSelection": true, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.enableBell": true, | |
"window.newWindowDimensions": "inherit", | |
"breadcrumbs.enabled": false, | |
"workbench.activityBar.visible": true, | |
"search.followSymlinks": false, | |
"editor.cursorSmoothCaretAnimation": true, | |
"files.trimTrailingWhitespace": true, | |
"workbench.editor.highlightModifiedTabs": true, | |
"editor.cursorBlinking": "smooth", | |
"workbench.settings.enableNaturalLanguageSearch": false, | |
"window.title": "${activeEditorMedium}${separator}${rootName}", | |
"files.exclude": { | |
"**/dist*": false, | |
"**/node_modules*": false | |
}, | |
"workbench.tree.indent": 20, | |
"editor.fontWeight": "500", | |
"terminal.integrated.fontFamily": "Victor Mono", | |
"terminal.integrated.fontWeight": "500", | |
"editor.linkedEditing": true, | |
"emmet.includeLanguages": { | |
"axml": "xml" | |
}, | |
"files.associations": { | |
"*.acss": "less", | |
"*.md": "mdx" | |
}, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": false | |
}, | |
"editor.formatOnSave": true, | |
"editor.foldingHighlight": false, | |
"workbench.colorTheme": "GitHub Dark", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"consoleLog.Color Bg": "red", | |
"consoleLog.Color": "white", | |
"security.workspace.trust.untrustedFiles": "open", | |
"editor.inlineSuggest.enabled": true, | |
"window.zoomLevel": 0, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false | |
}, | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": false, | |
"plaintext": false, | |
"markdown": false, | |
"mdx": false | |
}, | |
"cSpell.userWords": [ | |
"alipay", | |
"antd", | |
"bigfish", | |
"Cascader", | |
"Chakra", | |
"dangerously", | |
"dayjs", | |
"dingding", | |
"echarts", | |
"eqeqeq", | |
"fastify", | |
"ifyour", | |
"inner", | |
"Mobx", | |
"nestjs", | |
"NUXT", | |
"popconfirm", | |
"Qian", | |
"Qiankun", | |
"typeorm", | |
"Vercel", | |
"Vuex" | |
], | |
"cSpell.enabledLanguageIds": [ | |
"asciidoc", | |
"c", | |
"cpp", | |
"csharp", | |
"css", | |
"go", | |
"handlebars", | |
"html", | |
"jade", | |
"java", | |
"javascript", | |
"javascriptreact", | |
"json", | |
"jsonc", | |
"latex", | |
"less", | |
"markdown", | |
"php", | |
"plaintext", | |
"pug", | |
"python", | |
"restructuredtext", | |
"rust", | |
"scala", | |
"scss", | |
"text", | |
"typescript", | |
"typescriptreact", | |
"vue", | |
"yaml", | |
"yml" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment