首页 > 其他分享 >vscode 配置

vscode 配置

时间:2023-08-24 23:23:29浏览次数:46  
标签:workbench false vscode 配置 terminal editor true integrated

{
    "workbench.colorTheme": "Visual Studio Dark",
    "editor.fontSize": 16,
    "workbench.startupEditor": "none",
    "editor.formatOnType": true,
    "workbench.settings.openDefaultSettings": false,
    "github.gitProtocol": "ssh",
    "workbench.layoutControl.enabled": false,
    "terminal.integrated.smoothScrolling": true,
    "terminal.integrated.mouseWheelScrollSensitivity": 0.5,
    "workbench.colorCustomizations": {
        "terminal.background": "#1E1E1E",
        "terminal.foreground": "#D3D7CF",
        "terminalCursor.background": "#1E1E1E",
        "terminalCursor.foreground": "#D3D7CF",
        "terminal.ansiBlack": "#1E1E1E",
        "terminal.ansiBlue": "#3C74BD",
        "terminal.ansiBrightBlack": "#292622",
        "terminal.ansiBrightBlue": "#729FCF",
        "terminal.ansiBrightCyan": "#34E2E2",
        "terminal.ansiBrightGreen": "#8AE234",
        "terminal.ansiBrightMagenta": "#AD7FA8",
        "terminal.ansiBrightRed": "#EF2929",
        "terminal.ansiBrightWhite": "#EEEEEC",
        "terminal.ansiBrightYellow": "#FCE94F",
        "terminal.ansiCyan": "#06989A",
        "terminal.ansiGreen": "#60BD07",
        "terminal.ansiMagenta": "#94659C",
        "terminal.ansiRed": "#DB0000",
        "terminal.ansiWhite": "#D3D7CF",
        "terminal.ansiYellow": "#CFA900"
    },
    "terminal.integrated.copyOnSelection": true,
    "editor.inlayHints.enabled": "offUnlessPressed",
    "editor.detectIndentation": false,
    "editor.indentSize": "tabSize",
    "git.autofetch": true,
    "terminal.integrated.sendKeybindingsToShell": true,
    "window.commandCenter": false,
    "extensions.autoUpdate": false,
}

标签:workbench,false,vscode,配置,terminal,editor,true,integrated
From: https://www.cnblogs.com/YHFBlogs/p/17655449.html

相关文章

  • filebeat 配置采集nginx 日志
    filebeat配置nginx日志采集filebeat采集需求1.需要将以往30天的日志输出到es,并且以时间按天展示2.将不同的时间字段解析出来,输出到esnginx配置json日志log_formatlog_json'{"remoteAddr":"$clientRealIp",''"date_timeLocal":"$time_local",......
  • 本地启动可以读取到nacos配置,但是发布到服务器上时获取不到nacos配置
    【问题描述】微服务发布到服务器上时获取不到nacos配置,启动工程报错:Causedby:org.springframework.beans.factory.BeanCreationException:Errorcreatingbeanwithname'ssoConfig':Injectionofautowireddependenciesfailed;nestedexceptionisjava.lang.IllegalAr......
  • vim配置教程
    插件1.vim-plug插件管理junegunn/vim-plug:......
  • 只需半分钟,ARMS 帮你配置出“高质量”告警
    作者:图杨背景某位资深运维工程师A:“一天不收个几十条告警,我都觉得心里不踏实”。运维工程师B:“我那几个告警天天告,我的应用一点问题都没有,但是我又不敢关”。运维工程师C:“我每天都要花大量的时间,整理已经发生的告警:查它们是什么原因导致的,是故障还是误报,要不要解决,要不要屏蔽......
  • Electron,VUEJS3,Vite,TypesSript 开发环境配置
    Electron,VUEJS3,Vite,TypesSript开发环境配置项目早期是vue3+vite开发的,后期由于运营需求,要修改为Win安装包。方案还是比较多的:1.WPF-Webview由于目前只需要兼容win,所以可以选择WPF,但WPF需要WebView的,还需要本地架设服务。整体部署比较复杂以及需要熟悉C#与WPF相关开发。2.......
  • @Value注解读取yml中的map/list配置
    读取map1、配置文件写法common:map:'{"username":"lisi","password":"123456"}'2、java代码的写法@Value("#{${common.map}}")privateMap<String,Object>map;读取list1、配置文件写法common:list:1,2,32、ja......
  • linux的用户配置文件(4个用户文件)
    Linux中用户与组原创 凉兮 凉兮的运维日记 2023-08-2411:07 发表于北京收录于合集#linux11个#管理员1个#linux系统5个一、基本概念1、基本介绍    Linux作为一种多用户的操作系统(服务器系统),允许多个用户同时登录到系统上,并响应每个用户的请求。任何......
  • springboot中2种配置定时任务
    1、@Schedule用@Schedule注解,直接放到方法上就可以生效,代码如下:@Scheduled(cron="0*/5***?")publicvoiddealResult(){log.info("开始执行定时任务......");DefaultProfileprofile=DefaultProfile.getProfile(rdsConf......
  • 直播商城源码,JS Date配置日期格式化
    直播商城源码,JSDate配置日期格式化引入jsDate配置化diamante Date.prototype.format=function(fmt){  varo={    "M+":this.getMonth()+1,         //月份    "d+":this.getDate(),          //日  ......
  • 【HDP】jupyter配置pyspark
    source/usr/hdp/3.3.1.0-002/spark2/bin/load-spark-env.shnohupjupyternotebook--no-browser--port18888--ip0.0.0.0--allow-root--NotebookApp.token=root>jupyter.log2>&1& 关闭INFO级别日志$SPARK_HOME/conf/log4j.propertieslog4j.rootCate......