Skip to content

Instantly share code, notes, and snippets.

@yosida95
Last active July 21, 2023 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yosida95/3b058cf9b8595598c31a2456a9ab77c1 to your computer and use it in GitHub Desktop.
Save yosida95/3b058cf9b8595598c31a2456a9ab77c1 to your computer and use it in GitHub Desktop.
Building Vim 8.0 from Source Code on Ubuntu 14.04
$ sudo apt-get build-dep vim-nox

$ sudo apt-get install luajit libluajit-5.1-dev libncurses-dev libperl-dev python3-dev ruby-dev

$ git clone https://github.com/vim/vim.git

$ cd ./vim

$ ./configure \
  --prefix=/opt/vim/9.0 \
  --enable-fail-if-missing \
  --with-features=huge \
  --enable-gui=no \
  --without-x \
  --enable-gpm=no \
  --with-tlib=ncurses \
  --enable-luainterp=yes \
  --with-luajit \
  --enable-perlinterp=yes \
  --enable-python3interp=yes \
  --enable-rubyinterp=yes \
  --disable-netbeans

$ make -j

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