Skip to content

Instantly share code, notes, and snippets.

@VirgilMing
Created October 18, 2021 14:33
Show Gist options
  • Save VirgilMing/13fa240b7b6d8c214989f2d5455edfa0 to your computer and use it in GitHub Desktop.
Save VirgilMing/13fa240b7b6d8c214989f2d5455edfa0 to your computer and use it in GitHub Desktop.
To build VIM with everything on Ubuntu
# sudo apt-get build-dep vim
[clone VIM repo from GitHub]
# ./configure
--with-features=huge
--enable-multibyte
--enable-rubyinterp
--enable-python3interp
--with-python-config-dir=/usr/lib/python3.8/config-3.8-x86_64-linux-gnu
--enable-perlinterp
--enable-luainterp
--enable-tclinterp
--enable-cscope
--prefix=/usr/local
--enable-fail-if-missing
[read through the output for "... no" and see]
# make
# make install
# update-alternatives --install [vim, vi]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment