Skip to content

Instantly share code, notes, and snippets.

@yinsyim
Last active September 24, 2019 08:13
Show Gist options
  • Select an option

  • Save yinsyim/be90586db2b9aefbf68d02e09674c90b to your computer and use it in GitHub Desktop.

Select an option

Save yinsyim/be90586db2b9aefbf68d02e09674c90b to your computer and use it in GitHub Desktop.

Install vim with lua in CentOS

from original page


Install

# yum -y remove vim-*

# yum -y groupinstall 'Development tools'
# yum -y install ncurses ncurses-devel lua lua-devel

# git clone https://github.com/vim/vim.git ~/vim
# cd ~/vim

# ./configure --prefix=/usr --with-features=huge --enable-rubyinterp --enable-pythoninterp --enable-luainterp --with-lua-prefix=/usr
# make && make install

Uninstall

# cd ~/vim
# make uninstall
# make clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment