-
-
Save shahpnmlab/3c82830b9efbeb3a754b7c36b5c4522a to your computer and use it in GitHub Desktop.
Compile Vim 8 on Centos 7
This file contains 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
# Source: https://www.netroby.com/view/3891 | |
yum groupinstall "Development Tools" | |
yum install ncurses-devel git-core | |
git clone [email protected]: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