Skip to content

Instantly share code, notes, and snippets.

@shahpnmlab
Forked from lboulard/install-vim.sh
Created July 19, 2020 23:16
Show Gist options
  • Save shahpnmlab/3c82830b9efbeb3a754b7c36b5c4522a to your computer and use it in GitHub Desktop.
Save shahpnmlab/3c82830b9efbeb3a754b7c36b5c4522a to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment