VSCode主题自定义

news2024/12/23 19:17:50

在这里插入图片描述

记录vscode主题配置
{
    "editor.minimap.enabled": true,
    "files.autoSave": "afterDelay",
    "security.workspace.trust.untrustedFiles": "open",
    "markdown-preview-enhanced.previewTheme": "atom-light.css",
    "todohighlight.isEnable": false,
    "todo-tree.highlights.backgroundColourScheme": [
        "red",
        "orange",
        "violet",
        "#bbf3c3",
        "yellow",
        "orange",
        "blue"
    ],
    "todo-tree.highlights.foregroundColourScheme": [
        "black",
        "black",
        "black",
        "black",
        "black",
        "black",
        "black"
    ],
    "todo-tree.highlights.useColourScheme": true,
    "todo-tree.general.tags": [
        "BUG",
        "TODO",
        "FIXME",
        "XXX",
        "HACK"
    ],
    "editor.fontSize": 18,
    "tabnine.experimentalAutoImports": true,
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "editor.suggest.snippetsPreventQuickSuggestions": false,
    "backgroung.enable":true,
    "background.useDefault":false, 
    "background.customImages":[
        "file:///D:/kaierxi.png"  //更改路径可以替换背景图
    ],
    "editor.tokenColorCustomizations": {
        
        "comments": "#aa9db5", // 注释
        "keywords": "#488928", // 关键字
        "variables": "#451682d3", // 变量名
        "strings": "#2c32e6", // 字符串
        "functions": "#d58823", // 函数名
        "numbers": "#ff0037a3"// 数字
        
        
    },
    "background.style":{ //调整背景图的相关设置
        "content":"''",
        "pointer-events":"none",
        "position":"absolute",
        "top":"0",
        "left":"0",
        "width":"100%",
        "height":"100%",
        "z-index":"99999",
        "background.repeat":"no-repeat",
        "background-size":"contain",
        "opacity":0.3
    },
    "workbench.colorCustomizations": {

        "editorBracketHighlight.foreground1": "#d7c874",
        "editorBracketHighlight.foreground2": "#da70d6",
        "editorBracketHighlight.foreground3": "#179fff",
        "editorBracketHighlight.foreground4": "#24d600",
        "editorBracketHighlight.foreground5": "#00d8d8",
        "editorBracketHighlight.foreground6": "#ee0255",
        
        "panel.background": "#f1eeea",//输出终端
        "panel.border": "#eed9c5",
        "panelTitle.activeBorder": "#eed9c5",
        "panelInput.border": "#eed9c5",
        "terminalCursor.foreground": "#775fcc",
        // "panelTitle.activeForeground": "#eed9c5",

        // "editorSuggestWidget.background": "#ff0000",
        

        // "editor.background": "#242929",//当前所在编辑器
        "editor.selectionBackground": "#eed9c5",
        // "editor.selectionHighlightBackground": "#D8B2AD",
        "editor.findMatchBackground": "#2de7ff",
        "editor.findMatchHighlightBackground": "#00ffbf",
        // "editorGutter.background": "#FDF6EC",
        // "editorLineNumber.foreground": "#17a346",
        "editorLineNumber.activeForeground": "#F9708C",
        "editor.lineHighlightBackground": "#56b6bd3d",//光标所在行
        "editor.lineHighlightBorder": "#ffffff30",
        "editorCursor.foreground": "#4d76e7a1",

        "titleBar.activeBackground": "#7EB6C5",//最顶部栏
        // "titleBar.activeBackground": "#66a4b5",//最顶部栏
        // "titleBar.activeForeground": "#df5141",

        // "menu.background": "#6edee4",
        // "menu.foreground": "#e4d760",

        "activityBar.background": "#f5f5f7",//左侧菜单栏
        "activityBar.foreground": "#b8746b",
        "activityBar.inactiveForeground": "#d8bbbb",

        // "sideBar.background": "#e9d0e1",//左侧大栏
        // "sideBar.foreground": "#c4938d",
        "sideBar.dropBackground": "#9b6161",
        "sideBarSectionHeader.background":"#E1EAEF",
        "sideBarSectionHeader.border": "#E1EAEF",
        // "sideBar.border": "#ff0000",
        // "sideBarSectionHeader.foreground": "#ff0000",
        // "scrollbarSlider.activeBackground": "#ff0000",
        "list.activeSelectionBackground": "#e2dbda",
        "list.inactiveFocusBackground": "#e2dbda",
        "list.activeSelectionForeground": "#050505",
        "list.filterMatchBorder": "#e2dbda",
        "list.focusOutline": "#e2dbda",//选中文件的边框
        "list.inactiveSelectionBackground": "#e2dbda",
  
        "list.hoverBackground": "#e2dbda",
        

        // "tab.activeBackground": "#EC9F8D",//顶部标签栏
        // "tab.inactiveBackground": "#0e3a2c",
        "tab.activeForeground": "#5F65B7",
        // "tab.inactiveForeground": "#21d1b4",
        // "tab.hoverBorder": "#f58fcb",
        "tab.activeBorderTop": "#F9708C",

        
        "statusBar.background": "#e4c0bb",//底部状态栏
        "statusBar.border": "#df9d91"
    },
    "editor.codeActionsOnSave": {
    

    },
    "RainbowBrackets.independentPairColors": [
        
    ],
    "workbench.colorTheme": "Atom One Light",
    "workbench.editorAssociations": {
        "*.drawio": "hediet.vscode-drawio-text"
    },
    "code-runner.executorMap": {


        "c": "chcp 65001 && cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "cpp": "chcp 65001 && cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "javascript": "node",
        "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
        
        "zig": "zig run",
        // "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
       


        "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "php": "php",
        "python": "python -u",
        "perl": "perl",
        "perl6": "perl6",
        "ruby": "ruby",
        "go": "go run",
        "lua": "lua",
        "groovy": "groovy",
        "powershell": "powershell -ExecutionPolicy ByPass -File",
        "bat": "cmd /c",
        "shellscript": "bash",
        "fsharp": "fsi",
        "csharp": "scriptcs",
        "vbscript": "cscript //Nologo",
        "typescript": "ts-node",
        "coffeescript": "coffee",
        "scala": "scala",
        "swift": "swift",
        "julia": "julia",
        "crystal": "crystal",
        "ocaml": "ocaml",
        "r": "Rscript",
        "applescript": "osascript",
        "clojure": "lein exec",
        "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
        "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
        "racket": "racket",
        "scheme": "csi -script",
        "ahk": "autohotkey",
        "autoit": "autoit3",
        "dart": "dart",
        "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
        "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
        "haskell": "runghc",
        "nim": "nim compile --verbosity:0 --hints:off --run",
        "lisp": "sbcl --script",
        "kit": "kitc --run",
        "v": "v run",
        "sass": "sass --style expanded",
        "scss": "scss --style expanded",
        "less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",
        "FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "sml": "cd $dir && sml $fileName"
    },
    "C_Cpp.default.compilerPath": "D:/CCC/MinGW64/bin/g++.exe",
    "settingsSync.ignoredSettings": [
        "-C_Cpp.default.compilerPath"
    ],
    "code-runner.runInTerminal": true,
    "pasteImage.path": "${currentFileDir}/imgs",
    "editor.fontLigatures": false
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1277748.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

oracle sql相关语法

SQL*PLUS 在SQL*PLUS执行,会在执行后显示查询的执行计划和统计信息 SET AUTOTRACE ON;SELECT * FROM your_table WHERE column_name value;SET AUTOTRACE OFF;PLSQL PLSQL查询sql界面,鼠标右键,点击执行计划,会出现sql的执行计…

09-命令者模式-C语言实现

命令者模式是一个高内聚的模式, 其定义为: Encapsulate a request as an object,thereby letting you parameterize clients with different requests,queue or log requests,and support undoable operations.(将一个请求封装成一个对象&…

非得让你会之MyBatis插件与Java动态代理

引言 咱们今天聊聊Java动态代理,这东西在开发中真的太常见了。比如Spring AOP、RPC,它们都离不开动态代理。然后,咱们再来说说MyBatis插件,这可是MyBatis框架中的一个超实用的功能,它就像是给MyBatis加了个“超能力”…

卷积的理解,卷积与通道的关系

神经网络中的卷积操作卷积在图像领域的功能单通道卷积多通道卷积(1个卷积核)多通道卷积(多个卷积核)总结扩展 图像处理中的卷积核恒等(Identity)边缘检测(Edge detection)锐化&#…

2243:Knight Moves

文章目录 题目描述思路1. DFS2. BFS3. 动态规划 解题方法1. DFS2. BFS3. 动态规划 题目描述 题目链接 翻译如下: 注:骑士移动是和象棋里的马一样走的是日字型 你的一个朋友正在研究旅行骑士问题 (TKP),你要找到最短的…

java学习part28线程安全Lock锁方式

138-多线程-线程安全的懒汉式_死锁_ReentrantLock的使用_哔哩哔哩_bilibili 1.lock类变量 2.使用方法 和以前的加锁一样,同步代码前加锁,代码后解锁,就表示锁住了这一块代码。 lock是上面声明的静态常量 3.同步和加锁对比

通义千问 模型学习 和 SDK试用

通义千问-14B-Chat-Int4 模型库 (modelscope.cn) **通义千问-14B(Qwen-14B)**是阿里云研发的通义千问大模型系列的140亿参数规模的模型。Qwen-14B是基于Transformer的大语言模型, 在超大规模的预训练数据上进行训练得到。预训练数据类型多样&#xff0…

2023年第十二届数学建模国际赛小美赛C题雪崩防范求解分析

2023年第十二届数学建模国际赛小美赛 C题 雪崩防范 原题再现: 雪崩是极其危险的现象。现在,我们对雪崩是如何形成的已经有了很好的理解,但是我们还不能详细地预测雪崩发生的原因、时间和地点。村庄和道路可以通过各种方式防止雪崩。避免在脆…

python datetime 获取特定一天的后一天或者后几天

这里写自定义目录标题 1 获取特定天的时间对象 具体时间格式参考:Python time strptime()和strftime()-CSDN博客 import datetimetimer datetime.datetime.strptime(date, "%Y-%m-%d")2 获取下一天或者【下x天】的数据并进行格式转换 # 下一天数据 ne…

编译原理:设计与实现一个简单词法分析器

设计与实现一个简单词法分析。具体内容是产生一个二元式文本文件,扩展名为dyd,可将Java或C程序(测试程序)分解成为一个一个的单词及类型。 (选做:并查“单词符号与种别对照表”得出其种别,用一数字表示。)…

Redis数据结构之压缩列表

压缩列表是Redis为节约内存而开发的,是由一系列特殊编码的连续内存块组成的顺序型数据结构。一个压缩列表可以包含任意多个节点,每个节点可以保存一个字节数组或者整数值。 压缩列表构成 zlbytes: 记录整个压缩列表占用的内存字节数,对压缩列…

【每日一题】1094. 拼车-2023.12.2

题目: 1094. 拼车 车上最初有 capacity 个空座位。车 只能 向一个方向行驶(也就是说,不允许掉头或改变方向) 给定整数 capacity 和一个数组 trips , trip[i] [numPassengersi, fromi, toi] 表示第 i 次旅行有 numPassengersi…

Android 缩减、混淆处理和优化应用

为了尽可能减小应用的大小,您应在发布 build 中启用缩减功能来移除不使用的代码和资源。启用缩减功能后,您还会受益于两项功能,一项是混淆处理功能,该功能会缩短应用的类和成员的名称;另一项是优化功能,该功…

eclipse中设置自动补齐代码

eclipse中设置自动补齐代码 01 在window里找到preference 02 在preference里搜索content assist 03 在Java的content assist设置 设置为.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ 04 apply and close即可

PyLMKit(3):基于角色扮演的应用案例

角色扮演应用案例RolePlay 0.项目信息 日期: 2023-12-2作者:小知课题: 通过设置角色模板并结合在线搜索、记忆和知识库功能,实现典型的对话应用功能。这个功能是大模型应用的基础功能,在后续其它RAG等功能中都会用到这个功能。功…

Linux基础项目开发1:量产工具——UI系统(五)

前言: 前面我们已经把显示系统、输入系统、文字系统搭建好了,现在我们就要给它实现按钮操作了,也就是搭建UI系统,下面让我们一起实现UI系统的搭建吧 目录 一、按钮数据结构抽象 ui.h 二、按键编程 1.button.c 2.disp_manager…

赤峰学院师资培养管理系统的设计与实现

摘 要 随着我国国民经济建设的蓬勃发展和信息技术的越发成熟,各个行业都在积极使用现代化的管理工具,不断改善企业的服务质量,提高工作效率。对师资培养进行现代化的管理,提高工作效率是师资培养管理系统的一大优点。本文是一篇关…

Aspice(Automotive Software Process Improvement and Capability Determination)

Aspice(Automotive Software Process Improvement and Capability Determination) 1. 引言:ASPICE概述 定义 ASPICE简介:ASPICE(Automotive Software Process Improvement and Capability Determination)…

Qt Creator 11.0.3同时使用Qt6.5和Qt5.14.2

Qt Creator 11.0.3同时使用Qt6.5和Qt5.14.2 概要方法1.打开Qt Creator中的Kit,这里我直接附上几张截图,不同的版本打开位置可能有所不同,总之最终目的是要打开构建套件(Kit)2.可以看到构建套件里面有包含了“构建套件K…

栈顺序存储的实现(详解)

栈是一种数据结构,它具有后进先出(LIFO)的特性。栈可以用来存储一组元素,并且只能在栈顶进行插入和删除操作。栈的基本概念包括: 1. 入栈(push):将元素添加到栈顶的操作。 2. 出栈&…