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"
}
}

相关推荐
一起喝芬达20102 小时前
cursor平替,试试 vscode+cline+openrouter 的方案,还能自定义 mcp-server 教程大纲
ide·ai·ai编程
工具罗某人2 小时前
IDEA 2024 版本配置热部署
java·ide·intellij-idea
jarreyer5 小时前
Vim 编辑器常用快捷键速查表
linux·编辑器·vim
兮动人6 小时前
VSCode怎么同时打开多个页面
ide·vscode·编辑器
nathan05297 小时前
javaer快速从idea转战vscode
java·vscode·intellij-idea
SunTecTec8 小时前
美化IDEA注释:Idea 中快捷键 Ctrl + / 自动注释的缩进(避免添加注释自动到行首)以及 Ctrl + Alt + l 全局格式化代码的注释缩进
java·ide·intellij-idea
胖大和尚17 小时前
eclipse常用快捷键
ide
柯南二号17 小时前
Android Studio根目录下创建多个可运行的模块
android·ide·android studio
2401_8729905318 小时前
【凑修电脑的小记录】vscode打不开
ide·vscode·编辑器
Dontla1 天前
vscode预览模式(点击文件时默认覆盖当前标签,标签名称显示为斜体,可通过双击该标签取消)覆盖标签、新窗打开
ide·vscode·编辑器