Last active
January 24, 2019 04:00
-
-
Save nullne/f6de4fcb01f1602429db02f8332a6ea2 to your computer and use it in GitHub Desktop.
install latest vim with many features enabled from source
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
yum install gcc -y | |
yum install make -y | |
yum install ncurses-devel -y | |
yum install lua lua-devel -y | |
yum install ruby ruby-devel -y | |
yum install python python-devel -y | |
yum install perl perl-devel -y | |
git clone https://github.com/vim/vim.git | |
cd vim | |
./configure --disable-selinux \ | |
--enable-luainterp \ | |
--enable-perlinterp \ | |
--enable-pythoninterp \ | |
--enable-python3interp \ | |
--enable-tclinterp \ | |
--enable-rubyinterp \ | |
--enable-multibyte \ | |
--disable-gui \ | |
--with-features=huge \ | |
[email protected] | |
make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you can change to "make -j
nproc
"