首页 > Windows开发 > 详细

Windows Terminal 配置

时间:2020-06-20 15:01:53      阅读:91      评论:0      收藏:0      [点我收藏+]

注册表添加右键菜单:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\Terminal Here]

[HKEY_CLASSES_ROOT\Directory\Background\shell\Terminal Here\command]
@="C:\\Users\\ws-de\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe -d ."

Terminal配置文件,添加git bash

{
    ...
    "profiles":
    {
        "list":
        [
            ...
            {
                "guid": "{458a038e-a9ef-11ea-bb37-0242ac130002}",
                "closeOnExit" : true,
                "colorScheme" : "Campbell",
                "commandline" : "\"%PROGRAMFILES%\\git\\bin\\bash.exe\" -i -l",
                "cursorColor" : "#FFFFFF",
                "cursorShape" : "bar",
                "fontFace" : "Consolas",
                "fontSize" : 10,
                "historySize" : 9001,
                "icon" : "%PROGRAMFILES%\\Git\\mingw64\\share\\git\\git-for-windows.ico", 
                "name" : "Git-Bash",
                "padding" : "0, 0, 0, 0",
                "snapOnInput" : true,
                "startingDirectory" : "%USERPROFILE%"
            },
            ...
        ]
    },
   ...
}

参考:
https://stackoverflow.com/questions/56839307/adding-git-bash-to-the-new-windows-terminal
https://github.com/microsoft/terminal/issues/1060

Windows Terminal 配置

原文:https://www.cnblogs.com/wswind/p/13168307.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!