forked from x/icebergs
25 lines
514 B
Plaintext
25 lines
514 B
Plaintext
title "vim"
|
|
|
|
refer "官网" `
|
|
官网 https://www.vim.org/
|
|
下载 https://www.vim.org/download.php
|
|
源码 ftp://ftp.vim.org/pub/vim/unix/vim-8.1.tar.bz2
|
|
`
|
|
chapter "安装"
|
|
spark "下载" `
|
|
wget ftp://ftp.vim.org/pub/vim/unix/vim-8.1.tar.bz2
|
|
tar xvf vim-8.1.tar.bz2
|
|
cd vim81
|
|
`
|
|
|
|
spark "安装" `
|
|
yum install gcc
|
|
yum install python-devel
|
|
`
|
|
|
|
spark "编译" `
|
|
./configure --prefix=/home/shaoying/usr/vim --enable-multibyte=yes --enable-cscope=yes --enable-luainterp=yes --enable-pythoninterp=yes
|
|
make -j4
|
|
make install
|
|
`
|