Skip to content

Instantly share code, notes, and snippets.

@nicr9
Created August 18, 2016 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicr9/8dce410c667d38fb55958c4508764d58 to your computer and use it in GitHub Desktop.
Save nicr9/8dce410c667d38fb55958c4508764d58 to your computer and use it in GitHub Desktop.
Notes on installing vim from source (RedHat)
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