Skip to content

Instantly share code, notes, and snippets.

@pauloromeira
Created October 8, 2018 04:54
Show Gist options
  • Save pauloromeira/8809923bc90285f78ba2826fc1b47020 to your computer and use it in GitHub Desktop.
Save pauloromeira/8809923bc90285f78ba2826fc1b47020 to your computer and use it in GitHub Desktop.
Vim compile script
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