Skip to content

Instantly share code, notes, and snippets.

@douglarek
Last active February 14, 2020 06:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save douglarek/12245ccaf9c74ddc22b4f1fbc6201d3e to your computer and use it in GitHub Desktop.
Save douglarek/12245ccaf9c74ddc22b4f1fbc6201d3e to your computer and use it in GitHub Desktop.
vim:
./configure --with-features=huge --enable-multibyte --with-tlib=ncurses --enable-cscope --enable-terminal --with-compiledby=Steps --enable-gui=no --without-x --enable-python3interp --enable-luainterp --with-lua-prefix=/usr/local/ --enable-fail-if-missing --prefix=/usr/local --with-luajit
make
make install
macvim:
cd macvim/src
./configure --with-features=huge --enable-multibyte --with-tlib=ncurses --enable-cscope --enable-terminal --with-compiledby=Steps --enable-gui=no --without-x --enable-python3interp --enable-luainterp --with-lua-prefix=/usr/local/ --enable-fail-if-missing --prefix=/usr/local --with-luajit --with-macarchs=x86_64
make
open MacVim/build/Release
neovim:
make CMAKE_BUILD_TYPE=Release
make install
ccls:
cmake -G Ninja -H. -BRelease -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/usr/local/Cellar/llvm@7/7.1.0_1/lib/cmake
cmake --build Release --target install
lua:
sudo make macosx install
luajit:
sudo make install MACOSX_DEPLOYMENT_TARGET=10.15
sudo ln -sf luajit-2.1.0-beta3 /usr/local/bin/luajit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment