Skip to content

Instantly share code, notes, and snippets.

@shahpnmlab
shahpnmlab / install-vim.sh
Created July 19, 2020 23:16 — forked from lboulard/install-vim.sh
Compile Vim 8 on Centos 7
# Source: https://www.netroby.com/view/3891
yum groupinstall "Development Tools"
yum install ncurses-devel git-core
git clone git@github.com:vim/vim.git
./configure --prefix=/usr --with-features=huge --enable-multibyte --with-python-config-dir=/usr/lib/python2.7/config --enable-pythoninterp=yes
make -j4
make install