Skip to content

Instantly share code, notes, and snippets.

@na0x2c6
Last active May 3, 2020 02:00
Show Gist options
  • Save na0x2c6/6b4d8257e3b7d6b1e722dcc8b14c7389 to your computer and use it in GitHub Desktop.
Save na0x2c6/6b4d8257e3b7d6b1e722dcc8b14c7389 to your computer and use it in GitHub Desktop.
Building vim from the source on Ubuntu 18.04 LTS
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