Sean Wingert explains how to spice up your shell. It shows you how to test out zsh, fish, tmux, vim, nerd-fonts, and kubectl auto-completion using a single command on CentOS/Fedora/RHEL.
NOTE: Use RHEL/CentOS 7.4 or higher (despite the video showing 7.3) to avoid a backspace problem in tmux.
Command: bash LESSTHANSIGN (curl -s https://raw.githubusercontent.com/sea...)
Replace LESSTHANSIGN with the actual symbol since YouTube doesn't let me insert that character here.
Manually install (build and make) tmux version 2.7 on RHEL/CentOS 7.x:
sudo yum remove -y tmux
sudo yum install -y gcc kernel-devel make ncurses-devel
curl -LO https://github.com/tmux/tmux/releases...
tar zxvf tmux-2.7.tar.gz && cd tmux-2.7
sudo yum install -y ncurses libevent-devel ncurses-devel glibc-static && ./configure && make && sudo make install