Back to TILs

Compilar Vim 8

Date: 2018-11-19Last modified: 2022-10-07
cd ~/git
git clone https://github.com/vim/vim.git
cd vim

./configure --with-compiledby="Geraldo Ribeiro <geraldolsribeiro@gmail.com>" \
--with-features=huge \
--enable-gui=auto \
--with-x \
--enable-rubyinterp \
--with-ruby-command=/usr/bin/ruby \
--enable-perlinterp \
--enable-pythoninterp --with-python-config-dir=/usr/lib/python2.7/config \
--enable-fontset \
--enable-cscope \
--enable-gtk2-check \
--enable-gnome-check

make