Last active
August 8, 2017 07:02
-
-
Save 178inaba/d142c65499440dc3bc61057b4f0b458d to your computer and use it in GitHub Desktop.
Script to build vim.
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
#!/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