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 …

打印时如何让打印字体更加平滑 不那么锯齿化

直接上代码,希望有效果的朋友点个免费的赞!!! -webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;font-smooth: always;注意: -webkit-font-smoothing兼容webkit内核(一般是谷歌等…

聊聊测试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"?> <…

linux | crond cron | service systemctl chkconfig

我想说的是&#xff0c;同一标准是真的很重要&#xff0c;不然张三用一套规则&#xff0c;李四用另一套规则&#xff0c;惨的是&#xff0c;这两套规则我们都得学 呜呜呜 cron 简言之&#xff0c;是linux 自带的定时程序,crond 是cron 的进程名&#xff0c;一般都是程序 与进程…

数据结构 / 队列 / 循环队列 / 结构体定义和创建

1. 结构体定义 //head.h#ifndef __QUEUE_HEAD_H__ #define __QUEUE_HEAD_H__#include <string.h> #include <stdlib.h> #include <stdio.h>#define MAXSIZE 5 //循环队列最多元素个数typedef char datatype; //数据元素类型typedef struct {datatype data[M…

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;如果不了解一…

基于C语言从0开始手撸MQTT协议代码连接标准的MQTT服务器,完成数据上传和命令下发响应(华为云IOT服务器)

一、前言 近年来,物联网的发展如火如荼,已经渗透到我们生活的方方面面。从智能家居到工业自动化,从智慧城市到智慧农业,物联网正在以前所未有的速度改变着我们的生活。 大家现在可能已经习惯了通过手机控制家里的灯光、空调和电视,这就是物联网在智能家居领域的应用,如果…