如何在windows terminal配置Git Bash,并且美化终端

49team Lv2

准备工作

开始教程

  1. 新建一个配置文件
  2. 名称改为Git Bash
  3. 命令行为C:\Program Files\Git\bin\bash.exe --login -i

image-20240101192937147

  1. 将压缩包的etcusr这两个目录覆盖至Git根目录,并重新打开Git Bash

  2. 将这段代码贴在.bashrc,目录在C:\User\user\,再重新打开Git Bash

    1
    2
    3
    if [ -t 1 ]; then
    exec zsh
    fi
  3. 美化终端:去GitHub仓库下载oh-my-zsh安装脚本 ,并执行install.sh

GitHub服务器在国外,因网络问题无法下载,请开启移动网络流量(或代理软件)

image-20240101200226128

插件(可选)

推荐两个oh-my-zsh插件

  • zsh-syntax-highlighting 语法高亮

    1
    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  • zsh-autosuggestions 自动补全(补全快捷键:Ctrl+F

    1
    git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

配置插件

  • 在终端输入vim ~./zshrc,并将plugins=(git)修改为:plugins=(git zsh-syntax-highlighting zsh-autosuggestions),然后按下esc输入:wq,保存更改完成

image-20240101201421532

  • 然后执行source ~/.zshrc,加载配置文件,完成~

    image-20240101203204607

教程来源:Windows 通过 Git Bash 配置 Oh My Zsh - Seepine’s Blog

  • 标题: 如何在windows terminal配置Git Bash,并且美化终端
  • 作者: 49team
  • 创建于 : 2024-01-01 19:22:39
  • 更新于 : 2024-01-01 20:35:00
  • 链接: https://www.49team.org/2024/01/01/如何在windows-terminal配置Git-Bash,并且美化终端/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论