Skip to content

Instantly share code, notes, and snippets.

@kat0h
Created March 12, 2021 07:13
Show Gist options
  • Save kat0h/77fc9380dfde89b37ece9f2cc5c3937d to your computer and use it in GitHub Desktop.
Save kat0h/77fc9380dfde89b37ece9f2cc5c3937d to your computer and use it in GitHub Desktop.
Vim-build-script
cd vim
git fetch && git reset --hard origin/master
make distclean
./configure --with-features=huge --enable-multibyte --enable-rubyinterp --enable-python3interp --enable-pythoninterp --enable-perlinterp --enable-fontset --enable-pythoninterp
if [ ! $? -eq 0 ]; then exit ;fi
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment