blog.nambo.jp

CentOSにVim7.4をluaオプション付きでインストールする

Vimでneocompleteプラグインを使おうとしたところ、luaオプション付きでのインストールが必要だったのでメモ。 環境はCentOS 6.5。

必要なライブラリをインストール。

1
yum install -y lua-devel perl-ExtUtils-Embed

Vim7.4をダウンロードし、オプションを指定してインストール。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2
tar xvf vim-7.4.tar.bz2
cd vim74

./configure \
 --enable-multibyte \
 --with-features=huge \
 --enable-luainterp \
 --enable-perlinterp \
 --enable-pythoninterp \
 --with-python-config-dir=/usr/lib64/python2.6/config \
 --enable-rubyinterp \
 --with-ruby-command=/usr/bin/ruby \

make
make install

vim --versionで、+luaになっていればOK。