Skip to content

Instantly share code, notes, and snippets.

@jdowner
Last active November 13, 2018 09:32
Show Gist options
  • Save jdowner/f482b2c40ac08b27feb4 to your computer and use it in GitHub Desktop.
Save jdowner/f482b2c40ac08b27feb4 to your computer and use it in GitHub Desktop.
vim-build
#!/bin/bash
PREFIX=${HOME}/usr/local
VIMRUNTIMEDIR=${PREFIX}/share/vim/vim80/
./configure --with-features=huge \
--enable-multibyte \
--enable-python3interp=yes \
--with-python3-config-dir=/usr/lib/python3.5/config \
--enable-cscope \
--prefix=${PREFIX}
mkdir -p ${VIMRUNTIMEDIR}
rsync -avc runtime/ ${VIMRUNTIMEDIR}
make -j6 VIMRUNTIMEDIR=${VIMRUNTIMEDIR}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment