Last active
March 17, 2023 04:32
-
-
Save danielpclark/75f5ba84d4b5ab8e1b87dab3773a40e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/vim/vim.git | |
cd vim | |
./configure --with-features=huge \ | |
--enable-multibyte \ | |
--enable-rubyinterp=yes \ | |
--enable-python3interp=yes \ | |
--with-python-config-dir=$(python3-config --configdir) \ | |
--enable-perlinterp=yes \ | |
--enable-luainterp=yes \ | |
--enable-gui=gtk2 \ | |
--enable-cscope \ | |
--with-ruby-command=$HOME/.rvm/bin/ruby \ | |
--prefix=/usr/local | |
make VIMRUNTIMEDIR=/usr/local/share/vim/vim90 | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment