vscode颜色配置

{

"git.path": "D:/Git/bin/git.exe",

"git.autofetch": true,

"open-in-browser.default": "Chrome",

"git.confirmSync": false,

"[html]": {

"editor.defaultFormatter": "esbenp.prettier-vscode"

},

"git.enableSmartCommit": true,

"[javascript]": {

"editor.defaultFormatter": "vscode.typescript-language-features"

},

"editor.links": false,

"editor.defaultFormatter": "esbenp.prettier-vscode",

"editor.wordWrap": "on",

"editor.accessibilityPageSize": 11,

"vetur.format.defaultFormatter.js": "vscode-typescript",

"search.exclude": {

"**/node_modules": false

},

"vetur.ignoreProjectWarning": true,

"editor.formatOnSave": true,

"editor.formatOnType": true,

"editor.codeActionsOnSave": {

"source.fixAll.eslint": "explicit",

"source.fixAll": "explicit",

"eslint.autoFixOnSave": "explicit"

},

"eslint.enable": false,

"editor.detectIndentation": false,

"editor.tabSize": 2,

"eslint.options": {

"extensions": [

".js",

".vue"

]

},

"eslint.validate": [

"javascript",

"javascriptreact",

"vue-html",

{

"language": "vue",

"autoFix": true

},

{

"language": "html",

"autoFix": true

}

],

"eslint.run": "onSave",

"prettier.eslintIntegration": true,

"prettier.semi": false,

"prettier.singleQuote": true,

"javascript.format.insertSpaceBeforeFunctionParenthesis": false,

"vetur.format.defaultFormatter.html": "js-beautify-html",

"vetur.format.defaultFormatterOptions": {

"js-beautify-html": {

"wrap_line_length": 120,

"wrap_attributes": "auto"

}

},

"stylusSupremacy.insertColons": false,

"stylusSupremacy.insertSemicolons": false,

"stylusSupremacy.insertBraces": false,

"stylusSupremacy.insertNewLineAroundImports": false,

"stylusSupremacy.insertNewLineAroundBlocks": false,

"explorer.confirmDelete": false,

"eslint.nodePath": "",

"diffEditor.ignoreTrimWhitespace": false,

"[typescriptreact]": {

"editor.defaultFormatter": "esbenp.prettier-vscode"

},

"[javascriptreact]": {

"editor.defaultFormatter": "esbenp.prettier-vscode"

},

"[jsonc]": {

"editor.defaultFormatter": "esbenp.prettier-vscode"

},

"editor.fontSize": 14,

"update.showReleaseNotes": false,

"update.mode": "none",

"workbench.startupEditor": "none",

"editor.smoothScrolling": true,

"editor.tabCompletion": "on",

"editor.fontFamily": "'Jetbrains Mono', '思源黑体'",

"editor.fontLigatures": true,

"editor.insertSpaces": true,

"editor.copyWithSyntaxHighlighting": false,

"editor.linkedEditing": true,

"editor.cursorSmoothCaretAnimation": "on",

"editor.renderControlCharacters": true,

"editor.renderWhitespace": "boundary",

"workbench.list.smoothScrolling": true,

"workbench.editor.enablePreview": false,

"window.dialogStyle": "custom",

"debug.showBreakpointsInOverviewRuler": true,

"debug.toolBarLocation": "docked",

"html.format.indentHandlebars": true,

"terminal.integrated.fontFamily": "monospace",

"vetur.completion.scaffoldSnippetSources": {

"workspace": "💼",

"user": "🗒️",

"vetur": "✌"

},

"workbench.editor.autoLockGroups": {

"imagePreview.previewEditor": true

},

"fittencode.languagePreference.displayPreference": "zh-cn",

"fittencode.languagePreference.commentPreference": "zh-cn",

"editor.accessibilitySupport": "off",

"editor.guides.bracketPairs": true,

"workbench.activityBar.orientation": "vertical",

"workbench.colorTheme": "Default Dark Modern",

"workbench.colorCustomizations": {

//活动项目选中文件文字匹配颜色

// 文件树中选中项的文字和背景颜色

"list.activeSelectionForeground": "#ffffff", // 选中项的文字颜色

"list.activeSelectionBackground": "#094771", // 选中项的背景色

// 文件树中鼠标悬停项的颜色

"list.hoverForeground": "#ffffff", // 悬停时的文字颜色

"list.hoverBackground": "#2a2d2e", // 悬停时的背景色

// 搜索匹配的文字高亮颜色

"editor.findMatchBackground": "#515c6a", // 当前选中的匹配项背景色

"editor.findMatchHighlightBackground": "#314365", // 其他匹配项背景色

// 选中文本的高亮颜色

"editor.selectionBackground": "#264f78", // 选中文本的背景色

"editor.selectionHighlightBackground": "#1f4d6f" // 相同文本的高亮背景色

//右侧下拉匹配

// 建议窗口的颜色

"editorSuggestWidget.background": "#252526", // 建议窗口背景色

"editorSuggestWidget.foreground": "#d4d4d4", // 建议窗口文字颜色

"editorSuggestWidget.selectedBackground": "#094771", // 选中项背景色

"editorSuggestWidget.selectedForeground": "#ffffff", // 选中项文字颜色

"editorSuggestWidget.highlightForeground": "#0097fb", // 匹配文字高亮色

"editorSuggestWidget.border": "#454545", // 建议窗口边框颜色

// 建议窗口中的匹配高亮

"editorSuggestWidget.focusHighlightForeground": "#18a3ff", // 焦点项的匹配文字颜色

// 滚动条颜色

"scrollbarSlider.background": "#4e4e4e80", // 滚动条背景色

"scrollbarSlider.hoverBackground": "#64646480", // 滚动条悬停色

"scrollbarSlider.activeBackground": "#7d7d7d80" // 滚动条激活色

//波浪线的控制

"eslint.quiet": true,// 关闭 ESLint 的波浪线

"typescript.reportStyleChecks": false,// 关闭 TypeScript 的波浪线

"cSpell.enabled": false,// 关闭拼写检查的波浪线

"css.validate": false, // 关闭 CSS 验证

"scss.validate": false, // 关闭 SCSS 验证

// 闭 JavaScript/TypeScript 的验证

"javascript.validate.enable": false,

"typescript.validate.enable": false,

// 关闭 HTML 验证

"html.validate.scripts": false,

"html.validate.styles": false

// 关闭所有波浪线

"editor.hideCursorInOverviewRuler": true,

"editor.overviewRulerBorder": false,

"editor.renderControlCharacters": false,

"editor.occurrencesHighlight": false,

"editor.matchBrackets": "never",

// 关闭错误波浪线

"editor.errorDecorations": false,

// 关闭拼写检查波浪线

"editor.quickSuggestions": {

"other": false,

"comments": false,

"strings": false

}

//左侧文件配置

"workbench.colorCustomizations": {
// 活动项目(选中的文件)右键复制的下拉框
"list.activeSelectionBackground": "#97a7f1",
"list.activeSelectionForeground": "#d0ddee",
// 侧边栏整体背景色
"sideBar.background": "#1f1f1f",
// 侧边栏前景色(文字颜色)
"sideBar.foreground": "#ffffff",
// 侧边栏边框颜色
"sideBar.border": "#333333",
// 文件树项目
"sideBarSectionHeader.background": "#3b3b41",
"sideBarSectionHeader.foreground": "#cccccc",
"sideBarSectionHeader.border": "#333333",
// 悬停项目
"list.hoverBackground": "#77a7b6",
"list.hoverForeground": "#ffffff",
// 非活动但选中的项目
"list.inactiveSelectionBackground": "#6d6d8a",
"list.inactiveSelectionForeground": "#ffffff",

"tab.activeBackground": "#2d2b55",
// "tab.activeForeground": "#ff9d00",
"tab.activeBorder": "#ff9d00",
"tab.inactiveBackground": "#1f1f3f",
"tab.inactiveForeground": "#a599e9",
"editorGroupHeader.tabsBackground": "#1e1e3f",
// 活动标签(当前打开的标签)字体颜色
"tab.activeForeground": "#ffffff", // 纯白色
// 非活动标签字体颜色
"tab.inactiveForeground": "#c5d0da", // 灰色
// 鼠标悬停时标签字体颜色
"tab.hoverForeground": "#80b0d1", // 浅灰白色
// 非焦点组中的活动标签字体颜色
"tab.unfocusedActiveForeground": "#aaaaaa", // 浅灰色
// 非焦点组中的非活动标签字体颜色
"tab.unfocusedInactiveForeground": "#777777", // 深灰色
// 标签栏背景
"editorGroupHeader.tabsBackground": "#252526",
// 标签栏底部边框
"editorGroupHeader.tabsBorder": "#303031"
}
}

相关推荐
卷卷的小趴菜学编程6 分钟前
c++进阶之------红黑树
运维·c语言·开发语言·c++·vscode·红黑树·avl树
憧憬成为原神糕手21 分钟前
vim的一般操作(分屏操作) 和 Makefile 和 gdb
linux·编辑器·vim
阳洞洞31 分钟前
vim在连续多行行首插入相同的字符
linux·编辑器·vim
还是鼠鼠1 小时前
Node.js 包管理配置文件详解:package.json、npmrc、package-lock.json 全面解析
前端·javascript·vscode·node.js·json
長琹2 小时前
VSCode中搜索插件显示“提取扩展时出错。Failed to fetch”问题解决!
ide·vscode·编辑器
geekmice3 小时前
idea集成插件Fitten Code使用
java·ide·intellij-idea
你脸上有BUG10 小时前
解决npm在vscode终端内无法运行
vscode·npm·node
AI视觉网奇11 小时前
vscode git 管理
ide·git·vscode
Three~stone21 小时前
IDEA编码实用技巧
java·ide·intellij-idea