Skip to content

Instantly share code, notes, and snippets.

@squirrel532
Created June 14, 2020 15:13
Show Gist options
  • Save squirrel532/9d97ac218d8743ac7f24c0ea974d39ad to your computer and use it in GitHub Desktop.
Save squirrel532/9d97ac218d8743ac7f24c0ea974d39ad to your computer and use it in GitHub Desktop.
Build vim from source on macOS
git clone https://github.com/vim/vim
cd vim
./configure --with-features=huge --enable-multibyte \
--enable-python3interp=yes \
--with-python3-config-dir=$(python3-config --configdir) \
--enable-luainterp=yes \
--enable-cscope \
--prefix=/usr/local \
--with-luajit \
--with-lua-prefix=/usr/local
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment