Created
October 8, 2018 04:54
-
-
Save pauloromeira/8809923bc90285f78ba2826fc1b47020 to your computer and use it in GitHub Desktop.
Vim compile script
This file contains 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
cd ~ | |
rm -rf vim | |
git clone https://github.com/vim/vim.git | |
# export LD_LIBRARY_PATH=$HOME/.pyenv/versions/3.7.0/lib | |
# export PATH=$HOME/.pyenv/versions/3.7.0/bin:$PATH | |
cd vim | |
./configure --with-features=huge \ | |
--enable-multibyte \ | |
--enable-python3interp \ | |
--with-python3-config-dir=/usr/lib/python3.5/config \ | |
--enable-gui=gtk2 \ | |
--enable-cscope \ | |
--prefix=/usr/local | |
make 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