美文网首页
Mac 终端(terminal) oh-my-zsh + sol

Mac 终端(terminal) oh-my-zsh + sol

作者: itzhangbao | 来源:发表于2019-08-29 13:42 被阅读0次

    本片文章只记录个人平时换新设备配置系统terminal过程,个人觉得Mac系统的终端足够日常中使用,也有用过iTem2,也不错,个人喜好,进入正文:

    功能

    • 语法高亮
    • 命令行tab补全
    • 自动提示符
    • 显示Git仓库状态
    • 当然还有优美的界面

    配色方案

    使用Solarized的主题配色方案点击👇官网下载链接:

    Click here to download latest version

    得到解压目录:双击安装 Solarized Dark ansi.terminal

    solarized.png

    安装 oh-my-zsh

    使用 crul 安装:

    sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    

    或使用wget:

    `sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
    

    主题

    安装成功后,用vim(或者在根目录下找到并)打开隐藏文件 .zshrc ,修改主题为 agnoster:

    ZSH_THEME="agnoster"
    

    应用 agnoster 这个主题需要特殊的字体支持,否则会出现乱码情况,这时我们来配置字体:

    • 下载安装 Meslo 字体

    • 在 terminal 中应用 Meslo 字体:

    设置成 Meslo

    agnoster 为大多数人使用的主题,我个人用的是 ys, 可以去 oh-my-zsh 官网选择其他主题

    点击选择主题

    自动提示命令配置

    • 效果:

    当我们输入命令时,终端会自动提示你接下来可能要输入的命令,这时按 → 便可输出这些命令,非常方便,如图:

    • 完成自动提示功能如下:

    1. 克隆仓库到本地 ~/.oh-my-zsh/custom/plugins 路径下

    cd ~/.oh-my-zsh/custom/plugins
    git clone https://github.com/zsh-users/zsh-autosuggestions.git
    

    2. 用 vim(或者在根目录下找到并)打开 .zshrc 文件,找到插件设置命令,默认是 plugins=(git) ,我们把它修改为:

    plugins=(zsh-autosuggestions git)
    

    语法高亮配置

    1. 使用 homebrew 安装 zsh-syntax-highlighting 插件。

    brew install zsh-syntax-highlighting
    

    2. 配置.zshrc文件,插入一行。

    source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
    

    3. 输入命令。

    source ~/.zshrc
    

    PS:

    安装 homebrew 包管理工具:

    1. 下载源到本地

    curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_install
    

    2. 修改镜像源

    BREW_REPO = "https://github.com/Homebrew/brew".freeze
    

    修改为(如果没有找到的CORE_TAP_REPO的话直接复制)

    BREW_REPO = "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git".freeze
    CORE_TAP_REPO = "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git".freeze
    

    3. 控制台输入

    /usr/bin/ruby brew_install
    

    这里用的是中科院的源,可能会出现

    fatal: early EOF
    fatal: index-pack failed
    Error: Failure while executing; `git clone https://github.com/Homebrew/homebrew-core /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1` exited with 128.
    Error: Failure while executing; `/usr/local/bin/brew tap homebrew/core` exited with 1.
    Failed during: /usr/local/bin/brew update --force
    

    需要执行

    git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
    

    4. homebrew-core的镜像地址也设为中科院的国内镜像

    cd "$(brew --repo)" 
    
    git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
    
    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core" 
    
    git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
    
    // 更新
    brew update
    

    安全与隐私->任何来源

    sudo spctl --master-disable
    

    设置单位数密码

    pwpolicy -clearaccountpolicies
    

    end!

    相关文章

      网友评论

          本文标题:Mac 终端(terminal) oh-my-zsh + sol

          本文链接:https://www.haomeiwen.com/subject/xfqiectx.html