Skip to content

Instantly share code, notes, and snippets.

@robert-claypool
robert-claypool / building-vim-from-source.md
Last active August 24, 2022 07:27
Building Vim from Source

Assumes that Python2, Python3, and Lua are installed...

git clone https://github.com/vim/vim.git
cd vim
./configure --with-features=huge \
            --enable-pythoninterp=yes \
            --enable-python3interp=yes \
            --enable-luainterp=yes
make
sudo make install