美文网首页
Linux Shell 环境优化

Linux Shell 环境优化

作者: 嗝喯唲 | 来源:发表于2016-11-28 09:59 被阅读40次

    首先安装 zsh

    sudo apt-get install zsh

    安装 zsh 的插件工具, 提示输入密码为 ssh 登录的密码

    //>sh -c "$(curl -fsSL https://github.com/jeremyFreeAgent/oh-my-zsh-powerline-theme/blob/master/install_in_omz.sh)"

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

    将 virtualenvwrapper 运行脚本加入到 zsh 启动文件里

    echo ". /usr/local/bin/virtualenvwrapper_lazy.sh" >> ~/.zshrc

    设置 git 的默认编辑器为 vim(要到git项目下)

    git config core.editor vim

    相关文章

      网友评论

          本文标题:Linux Shell 环境优化

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