VSCode主题自定义

在这里插入图片描述

记录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.mzph.cn/news/190842.shtml

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

相关文章

SQL-分页查询offset的用法

今天在做一道关于查询一张表中第二高工资的问题时发现没有思路,经过一番搜索发现需要用到offset偏移量来解决这个问题。 OFFSET关键字用于指定从结果集的哪一行开始返回数据。通常,它与LIMIT一起使用,以实现分页效果。其语法如下&#xff1a…

【mysql】mysgld.log文件太大怎么办

我们有一台测试服务器。跑着一个msyq,发现没有空间了。差看日志文件占用了很多。 怎么破 使用下面命令 echo "" >mysqld.log 执行命令后

Spring Boot统一异常处理 Spring拦截器

小编在前文中向大家描述了Spring AOP的相关内容:Spring AOP-CSDN博客感兴趣的各位老铁可查看一下!! 那么,我们本文主要是代理搭建来实现一个Spring Boot统一功能处理模块了,当然,这个也是Spring AOP的实战环…

Vue3获取阴历/农历日期

安装插件 pnpm add chinese-lunar-calendar引入阳历/阴历切换函数 import {getLunar} from chinese-lunar-calendarexport function lunarDate(pDate){const year pDate.getFullYear()const month pDate.getMonth() 1const day pDate.getDate()const result getLunar(yea…

以热爱的态度对待生活,就是最自己的温柔

粉色系拼接款羽绒服 90白鸭绒+连帽立领设计 防风又保暖,柔软蓬松舒适感十足 衣服上加了时尚的字母印花元素 袖口做了魔术贴设计 下摆也做了可调节抽绳 防风保暖五部做到实处哦 宽松版型,很耐穿保暖性又很强 简单大方,搭配…

隐形内嵌!触想智能发布全新B款内嵌式工控一体机及内嵌式工业显示器

近日,触想智能发布全新B款内嵌式工控系列TPC-19.该系列可支持显示器和一体机等多种品类、多级配置的灵活选购。标志性的2.5mm矮阶窄边面板设计,适配隐形内嵌式安装,专为机柜类设备应用打造,以高契合的物理结构,带动稳定…

mysql在linux环境下安装(rpm)以及初始化后的登录配置

注:该安装步骤转载于CSDN,下方配置为原创 按照图片安装并初始化完成MySQL等操作后进行; 安装对于rpm包集合 1-查看安装情况(有4个路径) whereis mysql 2-查看服务状态 systemctl status mysql 3-初始化数据库 mysqld --initial…

企业真题(数组\面向对象-基础)

二、企业真题 1. 数组有没有length()这个方法? String有没有length()这个方法?(*蓝) 数组没有length(),是length属性。 String有length() 2. 有数组int[] arr,用Java代码将数组元素顺序颠倒(闪*购&…

FISCO-BCOS 在ARM系统架构搭建节点(国密版)

问题: 使用 fisco-bcos v2.9.1 搭建一个节点,批量上链1000条数据,在上链200条-400条数据之间节点会出现异常,导致后面数据不能上链。 系统环境 操作系统:统信 查看系统构架 ld -version rootuos-PC:/# ld -version …

聊聊测试for Jeffky

什么是测试 测试是一个系统性的过程,它涉及到在已开发的软件中执行程序、应用工具和技术来评估其质量、功能和性能。这个过程的目的是发现并纠正程序中的错误,提高软件的可靠性和稳定性,以满足用户的需求。 测试的分类 什么是自动化测试 自动…

TCP报文解析

1.端口号 标记同一台计算机上的不同进程 源端口:占2个字节,源端口和IP的作用是标记报文的返回地址。 目的端口:占2个字节,指明接收方计算机上的应用程序接口。 TCP报头中的源端口号和目的端口号同IP报头中的源IP和目的IP唯一确定一…

《第一行代码:Android》第三版4.2常用控件的使用方法(1)

概述 本文主要讲解常用控件的使用&#xff0c;包括&#xff1a;TextView、Button、EditText、ImageView、ProgressBar、AlertDialog。 布局文件 布局文件是activity_main.xml,内容如下&#xff1a; <?xml version"1.0" encoding"utf-8"?> <…

re:Invent大会,亚马逊云科技为用户提供端到端的AI服务

11月末&#xff0c;若是你降落在拉斯维加斯麦卡伦国际机场&#xff0c;或许会在大厅里看到一排排AI企业和云厂商相关的夸张标语。走向出口的路上&#xff0c;你的身边会不断穿梭过穿着印有“AI21Lab”“Anthropic”等字样的AI企业员工。或许&#xff0c;你还会被机场工作人员主…

Linux MIPI 调试中常见的问题

一、概述 做嵌入式工作的小伙伴知道&#xff0c;有时候程序编写没有调试过程中费时&#xff0c;之间笔记里有 MIPI 摄像头驱动开发的过程&#xff0c;有需要的小伙伴可以参考&#xff1a;Linux RN6752 驱动编写。而我也是第一次琢磨 MIPI 协议&#xff0c;其中有很多不明白的地…

华清远见嵌入式学习——C++——作业4

作业要求&#xff1a; 代码&#xff1a; #include <iostream>using namespace std;class Stu {friend const Stu operator*(const Stu &L,const Stu &R);friend bool operator<(const Stu &L,const Stu &R);friend Stu operator-(Stu &L,const S…

【计算机概论 ①】- 电脑:辅助人脑的好工具

目录 一、电脑硬件的五大单元 二、一切设计的起点&#xff1a;CPU 的架构 三、其他单元的设备 四、运行流程 五、电脑的分类 六、电脑上面常用的计算单位&#xff08;容量、速度等&#xff09; 操作系统跟硬件有相当程度的关联性&#xff0c;所以&#xff0c;如果不了解一…

群晖Video Station 添加海报墙-新方法

海报墙 一般我们找到的都是mp4、mkv等格式的视频资源&#xff0c;而没有像上图这样的海报资源&#xff0c;那要怎样实现海报墙呢&#xff1f; 按照以前的方法&#xff0c;是可以通过The Movie Database的API Key来搜刮电影海报信息&#xff0c;但是现在这个方法不行了 现在介绍…

随想录二刷Day27——回溯

文章目录 回溯7. 组合总和8. 组合总和 II 回溯 7. 组合总和 39. 组合总和 思路&#xff1a; 基本的递归回溯&#xff0c;只不过这里递归树每层的起始索引位置变成了 i &#xff0c;而不是下一个元素的索引 i1&#xff0c;因为可以重复选择。 复杂度&#xff1a; O ( n 2 n ) …

Docker容器间网络共享

Docker容器间网络共享 1、新建网络2、容器绑定网卡3、验证 Docker环境中为了一套应用部署多个环境、并且不修改配置文件的情况下&#xff0c;做到一键部署。要求不同容器直接的网络交互&#xff0c;使用容器名称。 网络相关常用命令 #查看网络内部信息docker network inspect b…

eclipse中设置自动补齐代码

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