Skip to content

Instantly share code, notes, and snippets.

@lboulard
Last active January 24, 2024 05:06
Show Gist options
  • Save lboulard/057242c2fe8493ec3968404ffbb249fc to your computer and use it in GitHub Desktop.
Save lboulard/057242c2fe8493ec3968404ffbb249fc 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