Skip to content

Instantly share code, notes, and snippets.

@deibit
Created May 8, 2019 09:39
Show Gist options
  • Save deibit/a9a27d84e101b4e8360b53aae81b43d9 to your computer and use it in GitHub Desktop.
Save deibit/a9a27d84e101b4e8360b53aae81b43d9 to your computer and use it in GitHub Desktop.
Vim compilation in Linux
git clone https://github.com/vim/vim
cd vim
make distclean
./configure --with-features=huge \
--enable-cscope \
--enable-terminal \
--with-python3-command=/usr/bin/python3 \
--with-python3-config-dir=/usr/lib/python3.6/config-3.6m-x86_64-linux-gnu \
--enable-fail-if-missing \
--enable-multibyte \
--enable-python3interp
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment