Skip to content

Instantly share code, notes, and snippets.

@tangnotes
Last active June 13, 2017 11:17
Show Gist options
  • Save tangnotes/fac782cf9627fb36c17336b97a1f11d0 to your computer and use it in GitHub Desktop.
Save tangnotes/fac782cf9627fb36c17336b97a1f11d0 to your computer and use it in GitHub Desktop.
Essential packages for Ubuntu(git, vim, lua, etc.)
#!/bin/bash
sudo apt install git curl wget python2.7-dev lua5.3 liblua5.3 liblua5.3-dev libncurses5 libncurses5-dev ncurses-base ncurses-bin ncurses-term
git clone https://github.com/vim/vim.git
cd vim
./configure --prefix=/usr --with-features=huge --enable-gui=no --without-x --enable-luainterp --enable-pythoninterp --enable-perlinterp
make VIMRUNTIMEDIR=/usr/share/vim/vim80
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment