美文网首页
linux终端利器oh-my-zsh(ubuntu 16.04)

linux终端利器oh-my-zsh(ubuntu 16.04)

作者: Mr_Laoyu | 来源:发表于2017-12-01 15:07 被阅读0次

    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)"
    

    安装完要注销才会生效,下面是切换终端工具命令

    exec bash
    exec zsh
    

    安装命令自动补齐插件
    https://github.com/zsh-users/zsh-autosuggestions/blob/master/INSTALL.md
    选Oh My Zsh安装

    3.配置一些实用插件

    插件在~/.oh-my-zsh/plugins目录下,把有需要的配到~/.zshrc文件中,插件之间用空格隔开,如下:

    vi ~/.zshrc
    
    plugins=(
      git extract z laravel5
    )
    

    实用工具:zsh-autosuggestions

    git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
    
    vi ~/.zshrc 
    
    plugins=(zsh-autosuggestions)
    

    退出编辑,运行下面命令使配置生效

    source ~/.zshrc 
    

    详情请看:
    https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins-Overview

    4.终端代理(简单粗暴)

    需要有如某梭的代理客户端

    vi ~/.zshrc
    
    export ALL_PROXY=socks5://127.0.0.1:1080
    
    source ~/.zshrc 
    

    相关文章

      网友评论

          本文标题:linux终端利器oh-my-zsh(ubuntu 16.04)

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