Tmux install

From wikinotes

Linux/BSD

pacman -S tmux    # archlinux
pkg install tmux  # freebsd

msys2

msys2's version of tmux is a specific commit from the tmux github page. Unfortunately, I don't believe it is complete. No issue, simply download the correct version of tmux, and compile it.

pacman -S mingw-w64-x86_64-libevent      ## required by tmux
pacman -S mingw-w64-x86_64-toolchain     ## compile-environment (gcc etc)

curl -#O ... ## I cannot remember where I found the .tar.gz
./configure && make
make install