Last active
May 4, 2019 16:04
-
-
Save MikimotoH/70af56ed5d36abe0d745f5f9cab7049b to your computer and use it in GitHub Desktop.
build vim with python2 python3 YouCompleteMe on Ubuntu 14.04
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
./configure --with-features=huge \ | |
--enable-multibyte \ | |
--enable-rubyinterp=yes \ | |
--enable-python3interp=yes \ | |
--with-python3-config-dir=$(python3-config --configdir) \ | |
--enable-perlinterp=yes \ | |
--enable-luainterp=yes \ | |
--enable-gui=gtk2 \ | |
--enable-cscope \ | |
--prefix=/usr/local | |
make -j$(nproc) VIMRUNTIMEDIR=/usr/local/share/vim/vim81 | |
sudo make install | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment