Skip to content

Instantly share code, notes, and snippets.

@yuki777
Last active August 29, 2015 13:57
Show Gist options
  • Save yuki777/9524301 to your computer and use it in GitHub Desktop.
Save yuki777/9524301 to your computer and use it in GitHub Desktop.
install latest vim to ~/local on ubuntu
mkdir -p ~/local/src
cd $_
hg clone https://vim.googlecode.com/hg/ vim
cd vim/src
sudo apt-get install libncurses5-dev lua5.2 luajit liblua5.2-dev nodejs
# yum
# sudo yum install -y mercurial gcc ncurses-devel lua lua-devel
./configure --prefix=$HOME/local --enable-luainterp=yes --enable-pythoninterp=yes --enable-rubyinterp=yes --enable-multibyte --enable-gui=no --with-features=huge --without-x
make && make install
# neocomplete.vim needs lua
# jshint needs nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment