LoginSignup
12
9

More than 5 years have passed since last update.

UbuntuにVim7.4 +Luaを入れる

Posted at

必要なものをインストール

# apt install mercurial ncurses-dev lua5.2 lua5.2-dev luajit python-dev python3-dev

Vim7.4のダウンロード・インストール

# wget ftp://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2
# tar xjf vim-7.4.tar.bz2
# cd vim74

# ./configure \
--with-features=huge \
--enable-multibyte \
--enable-luainterp=dynamic \
--enable-gpm \
--enable-cscope \
--enable-fontset \
--enable-fail-if-missing \
--prefix=/usr/local

# make && make install

Luaの確認

$ vim --version | grep lua
+dialog_con      +lua/dyn      +rightleft      +windows

以上。

12
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
9