banner
NEWS LETTER

Mac安装终端工具

Scroll down

本文作者:丁辉

部署 Oh My Zsh

本文介绍如何安装”Oh My Zsh” 终端和 “zsh-autosuggestions” 自动补全工具

Github项目地址

Homebrew官网

  1. 打开 Mac 终端输入下载命令(下列三种方式都可以,建议使用 curl 因为 mac 一般自带哈哈)

    Method Command
    curl sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
    wget sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
    fetch sh -c "$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  2. 启用插件

    1
    vi ~/.zshrc
  3. 替换如下内容

    原内容如下

    1
    plugins=(git)

    修改后

    1
    2
    3
    4
    5
    6
    7
    8
    9
    plugins=(
    git
    bundler
    dotenv
    macos
    rake
    rbenv
    ruby
    )
  4. 重启终端查看效果

部署 zsh-autosuggestions

Github项目地址

  1. 克隆仓库

    1
    git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
  2. 修改配置文件

    1
    vim ~/.zshrc
  3. 添加 zsh-autosuggestions 到 plugins=() 模块内

    1
    2
    3
    plugins=( 
    zsh-autosuggestions
    )
  4. 重启终端查看效果

更换主题

主题展示

  1. 编辑配置文件

    1
    ~/.zshrc
  2. 找到 ZSH_THEME 配置

    1
    ZSH_THEME="agnoster"

安装字体

Github项目地址

  1. 克隆仓库

    1
    git clone https://github.com/powerline/fonts.git --depth=1
  2. 安装

    1
    2
    cd fonts
    ./install.sh
  3. 清除安装包

    1
    2
    cd ..
    rm -rf fonts

更换字体

  1. Vscode更换字体

    打开vscode > Settings > 搜索font > 找到Terminal › Integrated: Font Family

    填写字体(格式如下)

    可以用 “,” 来分隔多个字体

    1
    Go Mono for Powerline,Hack
  2. Mac 默认终端更换字体

    点击左上角终端 > 偏好设置 > 描述文件 > 更改字体 > 点击搜索添加

  3. Item2 终端更换字体

    点击左上角iTerm2 > Preferences > Profiles > Text > 勾选 Use built-in Powerline glyphs

I'm so cute. Please give me money.

其他文章
cover
Mac安装Brew工具
  • 70/01/01
  • 00:00
  • 系统-MacBook
cover
Vscode配置特殊SSH协议
  • 70/01/01
  • 00:00
  • 系统-MacBook
目录导航 置顶
  1. 1. 部署 Oh My Zsh
  2. 2. 部署 zsh-autosuggestions
  3. 3. 更换主题
  4. 4. 安装字体
请输入关键词进行搜索