apt-get update
apt-get -y install wget tar libevent-dev libncurses-dev
VERSION=3.1
wget https://github.com/tmux/tmux/releases/download/${VERSION}/tmux-${VERSION}.tar.gz
tar xf tmux-${VERSION}.tar.gz
rm -f tmux-${VERSION}.tar.gz
cd tmux-${VERSION}
./configure
make
make install
cd ..
rm -rf /usr/local/src/tmux-*
mv tmux-${VERSION} /usr/local/src
source ~/.bashrc
tmux -V
export TERM=xterm-256color
cd
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .
tmux new -s meta
add-apt-repository ppa:jonathonf/vim
apt update
apt install vim
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install
source ~/.bashrc
curl -LO https://github.com/BurntSushi/ripgrep/releases/download/11.0.2/ripgrep_11.0.2_amd64.deb
dpkg -i ripgrep_11.0.2_amd64.deb
curl -sL install-node.now.sh/lts | bash
Run :PlugInstall
and :CocInstall coc-python