Last active
May 3, 2020 02:00
-
-
Save na0x2c6/6b4d8257e3b7d6b1e722dcc8b14c7389 to your computer and use it in GitHub Desktop.
Building vim from the source on Ubuntu 18.04 LTS
This file contains hidden or 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
sudo apt install \ | |
lua5.2 \ | |
liblua5.2-dev \ | |
luajit \ | |
ruby-dev \ | |
xorg-dev \ | |
libncurses5-dev | |
./configure \ | |
--with-features=huge \ | |
--with-x \ | |
--enable-multibyte \ | |
--enable-luainterp=dynamic \ | |
--enable-gpm \ | |
--enable-cscope \ | |
--enable-fontset \ | |
--enable-fail-if-missing \ | |
--prefix=/usr/local \ | |
--enable-python3interp=dynamic \ | |
--enable-rubyinterp=dynamic \ | |
--enable-gui=auto \ | |
--enable-gtk2-check | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment