Skip to content

Instantly share code, notes, and snippets.

@178inaba
Last active August 8, 2017 07:02
Show Gist options
  • Save 178inaba/d142c65499440dc3bc61057b4f0b458d to your computer and use it in GitHub Desktop.
Save 178inaba/d142c65499440dc3bc61057b4f0b458d to your computer and use it in GitHub Desktop.
Script to build vim.
#!/bin/bash
sudo yum -y install git lua-devel
git clone https://github.com/vim/vim.git
cd vim/
./configure --enable-multibyte --enable-luainterp
make
sudo make install
# One line to build the latest.
# $ git clean -dfx && git pull && ./configure --enable-multibyte --enable-luainterp && make && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment