Created
August 18, 2016 11:49
-
-
Save nicr9/8dce410c667d38fb55958c4508764d58 to your computer and use it in GitHub Desktop.
Notes on installing vim from source (RedHat)
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
sudo yum groupinstall 'Development tools' | |
sudo yum install ncurses ncurses-devel | |
mkdir -p ~/src/github.com/vim | |
cd !$ | |
git clone https://github.com/vim/vim.git | |
cd vim | |
./configure --prefix=/usr --with-features=huge --enable-pythoninterp --with-compiledby='@nicr9_' | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment