Skip to content

Instantly share code, notes, and snippets.

@ninrod
Forked from juxtin/vim74centos
Last active September 1, 2019 22:52
Show Gist options
  • Save ninrod/f7829e6146114c0a2e23770d98e2f779 to your computer and use it in GitHub Desktop.
Save ninrod/f7829e6146114c0a2e23770d98e2f779 to your computer and use it in GitHub Desktop.
Build Vim from source on Centos
#!/bin/bash
yum groupinstall 'Development tools' -y
yum install ncurses ncurses-devel -y
git clone --depth 1 https://github.com/vim/vim.git
cd vim
./configure --prefix=/usr --with-features=huge --enable-pythoninterp --enable-multibyte
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment