美文网首页
命令行配置

命令行配置

作者: 锋之律 | 来源:发表于2020-09-09 20:28 被阅读0次

    一、oh my zsh

    1. 安装zsh

    sudo apt install zsh
    

    2. 安装oh my zsh

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

    3. 配置Oh My Zsh

    • 下载自动补全插件
    git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
    git clone git://github.com/zsh-users/zsh-syntax-highlighting $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
    
    • 在.zshrc文件中对应位置加上以下配置
    ZSH_THEME="af-magic"
    plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
    

    4.将Linux shell改为bash

    查看shell是否为bash,在终端运行如下命令

    ls -l /bin/sh
    

    如果为显示为/bin/sh -> bash则为正常,否则请按以下方式修改:
    方法一:在终端运行如下命令,然后选择 no。

    sudo dpkg-reconfigure dash
    

    方法二:先删除sh,再创建软链接。

    rm -rf /bin/sh
    sudo ln -s /bin/bash /bin/sh
    

    5. agnoster主题的使用(可选)

    • 安装powerline font字体库
    sudo apt-get install fonts-powerline
    
    • 在.zshrc文件中对应位置加上以下配置
    ZSH_THEME="agnoster"
    

    附:无root安装zsh:https://www.jianshu.com/p/0c6abc1ac123

    相关文章

      网友评论

          本文标题:命令行配置

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