Last active
November 13, 2018 09:32
-
-
Save jdowner/f482b2c40ac08b27feb4 to your computer and use it in GitHub Desktop.
vim-build
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 | |
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