zoukankan      html  css  js  c++  java
  • Windows Terminal下配置Git Bash

    Windows Terminal配置Git Bash


    1. 打开Windows Terminal配置文件profiles.json;
    2. 在"profiles"->"list"属性下添加新配置:
     1 {
     2     "acrylicOpacity": 0, // 透明度
     3     "closeOnExit": true, // 关闭的时候退出命令终端
     4     "colorScheme": "Campbell", // 样式配置
     5     "commandline": "C:\Program Files\Git\bin\bash.exe", // git-bash的命令行所在位置
     6     "cursorColor": "#FFFFFF", // 光标颜色
     7     "cursorShape": "bar", // 光标形状
     8     "fontFace": "YaHei Consolas Hybrid", // 字体配置,选择你电脑上已安装的字体
     9     "fontSize": 14, // 终端字体大小
    10     "guid": "{1c4de342-38b7-51cf-b940-2309a097f589}", // 唯一的标识,改成和其他的已有终端不一样
    11     "historySize": 9001, // 终端窗口记忆大小
    12     "icon": "C:\Program Files\Git\mingw64\share\git\git-for-windows.ico", // git的图标
    13     "name": "git-bash", // 标签栏的标题显示
    14     "padding": "0, 0, 0, 0", // 边距
    15     "snapOnInput": true,
    16     "startingDirectory": "%USERPROFILE%", // gitbash 启动的位置(默认在C盘的用户里面的就是 ~ )
    17     "useAcrylic": false // 是否开启透明度
    18 }

  • 相关阅读:
    如何安装配置ulipad
    python链接mysql的代码
    python 模块
    python 查找关键词在百度的排名
    python 类和对象
    python beautifulsoup多线程分析抓取网页
    python 函数关键参数
    python 批量下载文件
    python 语言有哪些特点
    python 类和对象的特点
  • 原文地址:https://www.cnblogs.com/linchenjian/p/12573129.html
Copyright © 2011-2022 走看看