Skip to content

Instantly share code, notes, and snippets.

@Muratam
Last active November 23, 2017 06:04
Show Gist options
  • Save Muratam/f3d9d17d1b763af1cc80c37de9ed560f to your computer and use it in GitHub Desktop.
Save Muratam/f3d9d17d1b763af1cc80c37de9ed560f to your computer and use it in GitHub Desktop.
install vim8 (at ubuntu)
set -e
cd ~
git clone https://github.com/vim/vim
cd vim
./configure
make
sudo apt remove -y vim
sudo make install
rm -rf ~/vim
@Muratam
Copy link
Author

Muratam commented Nov 23, 2017

set -e ; cd ~ ; git clone https://github.com/vim/vim ;cd vim ; 
./configure --with-features=huge --enable-multibyte --enable-luainterp=dynamic --enable-gpm --enable-cscope --enable-fontset --enable-fail-if-missing
make ; sudo apt remove -y vim ; sudo make install ;rm -rf ~/vim

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