Installing a NeoBundle-Compatible vim on CentOS 5
Overview
While trying to build vim from source on CentOS 5,
an error occurred when running .configure:
1 | no terminal library found |
It’s complaining that the terminal library is missing.
For reference, here is the flow I used to download and build vim from source.
1 | $ wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2 |
- Install ncurses-devel and run again
1 | $ sudo yum install -y ncurses-devel |
It went through (;_)
The vim installed via yum was a version that doesn’t support NeoBundle,
so I chose to build it from source.
Let me know if there’s a decent rpm out there!
