Skip to content

Instantly share code, notes, and snippets.

@edy4c7
Last active October 9, 2015 15:57
Show Gist options
  • Select an option

  • Save edy4c7/bbdb6d7162553cc03e54 to your computer and use it in GitHub Desktop.

Select an option

Save edy4c7/bbdb6d7162553cc03e54 to your computer and use it in GitHub Desktop.
pythonとluaのサポート付きでvimをビルドする。jedi-vim使いたい時とかに使う。
#!/bin/sh
./configure \
--enable-fail-if-missing \
--enable-luainterp \
--with-luajit \
--with-lua-prefix=/path/to/lua \
--enable-multibyte \
--enable-python3interp \
--with-python3-config-dir=/path/to/python/config/dir \
LDFLAGS=-export-dynamic
make && sudo make install && vim --version
@edy4c7
Copy link
Author

edy4c7 commented Oct 9, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment