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
}
  • 7
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

开开开心果儿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值