This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum install gcc ncurses-devel | |
mkdir -p ~/opt ~/tmp | |
cd ~/tmp/ | |
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2 | |
tar xvjf vim-7.4.tar.bz | |
cd vim74/ | |
export vi_cv_path_python=/usr/local/python2.7/bin/python2.7 | |
./configure --prefix=$HOME/opt --with-features=huge --enable-pythoninterp --with-python-config-dir=/usr/local/python2.7/lib/python2.7/config | |
make |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum install autoconf automake libtool ncurses-devel | |
mkdir -p ~/opt ~/tmp | |
# install libevent | |
cd ~/tmp | |
git clone https://github.com/libevent/libevent.git | |
cd libevent/ | |
git checkout release-2.0.21-stable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get -y remove tmux | |
sudo apt-get install wget tar libevent-dev libncurses-dev | |
VERSION=2.6 && mkdir ~/tmux-src && wget -qO- https://github.com/tmux/tmux/releases/download/${VERSION}/tmux-${VERSION}.tar.gz | tar xvz -C ~/tmux-src && cd ~/tmux-src/tmux* | |
./configure && make -j"$(nproc)" && sudo make install |