Skip to content

Instantly share code, notes, and snippets.

@nullne
Last active January 24, 2019 04:00
Show Gist options
  • Save nullne/f6de4fcb01f1602429db02f8332a6ea2 to your computer and use it in GitHub Desktop.
Save nullne/f6de4fcb01f1602429db02f8332a6ea2 to your computer and use it in GitHub Desktop.
install latest vim with many features enabled from source
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 \
--with-modified-by=co.nullne@gmail.com
make && make install
@ikenchina
Copy link

you can change to "make -j nproc"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment