Last active
October 12, 2015 07:38
-
-
Save stepantubanov/3993184 to your computer and use it in GitHub Desktop.
vim
This file contains 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 --prefix=/usr/local --without-x --disable-nls --with-tlib=ncurses --enable-multibyte --enable-rubyinterp --enable-pythoninterp --with-features=huge | |
make | |
# This is to fix non-ascii characters in this file (should be fixed soon in stable release) | |
iconv -c -t UTF-8 ./runtime/tools/efm_perl.pl > ./runtime/tools/efm_perl.pl | |
sudo make install | |
# This copies vim file with symbols (otherwise it'll fail to run) | |
sudo cp src/vim /usr/local/bin/vim | |
sudo ln -f /usr/local/bin/vim /usr/local/bin/vi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment