1
0
forked from x/icebergs
icebergs/misc/vim/vim.shy
2020-09-11 21:37:49 +08:00

52 lines
1.4 KiB
Plaintext

title "vim"
refer "官网" `
官网 https://www.vim.org
源码 https://github.com/vim/vim
文档 http://vimdoc.sourceforge.net/htmldoc/usr_toc.html
`
premenu
chapter "源码"
field "安装" web.code.vim.vim
field "源码" web.code.inner args `[ usr/install/vim81/ src/main.c 110 ]`
field "脚本" web.code.inner args `[ usr/install/vim81/install/share/vim/vim81/ filetype.vim ]`
field "文档" web.code.inner args `[ usr/install/vim81/install/share/vim/vim81/doc/ help.txt ]`
section "构建"
spark shell `
wget ftp://ftp.vim.org/pub/vim/unix/vim-8.1.tar.bz2
tar xvf vim-8.1.tar.bz2 && cd vim81
./configure --prefix=$PWD/install --enable-multibyte=yes
make -j4 && make install
`
section "启动"
spark shell `
cd ./install
./bin/vim
`
chapter "应用"
field "同步流" web.code.vim.sync
field "输入法" web.code.vim.input
field "收藏夹" web.code.vim.favor
field "输入法" web.code.input.wubi
chapter "配置"
refer `
启动脚本 https://github.com/shylinux/contexts/blob/master/etc/conf/vimrc
`
field "启动脚本" web.code.inner args `[ https://raw.githubusercontent.com/shylinux/contexts/master/etc/conf/ vimrc ]`
chapter "插件"
refer `
插件管理器 https://github.com/junegunn/vim-plug/plug.vim
`
field "插件管理器" web.code.inner args `[ https://raw.githubusercontent.com/shylinux/contexts/master/etc/conf/ plug.vim ]`
section "状态栏"
refer `
插件 https://github.com/vim-airline/vim-airline
`