美文网首页
tmux,oh-my-zsh linux必备工具

tmux,oh-my-zsh linux必备工具

作者: 站长_郭生 | 来源:发表于2019-03-27 21:52 被阅读0次

    zsh带有tmux提示
    需要加下zsh

    plugins=(
      zsh-autosuggestions git go autojump yarn npm tmux
    )
    

    推荐几个好用插件

    zsh-history-substring-search
    https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/history-substring-search

    zsh-syntax-highlighting
    https://github.com/zsh-users/zsh-syntax-highlighting

    zsh-autosuggestions
    https://github.com/zsh-users/zsh-autosuggestions

    配置终端默认启动tmux

    要将终端配置为默认自动启动tmux ,请将以下行添加到~/.bashrc启动文件中,位于别名部分的上方。

    if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then
        tmux attach -t default || tmux new -s default
    fi
    

    美化节面
    https://github.com/gpakosz/.tmux

    管理tmux工具 重启保存
    https://github.com/tmux-plugins/tmux-continuum

    相关文章

      网友评论

          本文标题:tmux,oh-my-zsh linux必备工具

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