From 0c661f5f888ea180d7aaeca13a9ef44bf22165d2 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Thu, 7 Apr 2016 13:49:25 +0900 Subject: add installation section --- template/help/snip-installation.txt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 template/help/snip-installation.txt diff --git a/template/help/snip-installation.txt b/template/help/snip-installation.txt new file mode 100644 index 0000000..e4d3f63 --- /dev/null +++ b/template/help/snip-installation.txt @@ -0,0 +1,26 @@ +============================================================================== +INSTALLATION{{_expr_:repeat(' ',77-12*2-strdisplaywidth(expand("%:p:t:r")))}}*{{_expr_:expand("%:p:t:r")}}-installation* +{{_cursor_}} +Manual installation: + Copy the files to your .vim directory (_vimfiles on Windows). + +Pathogen: > + cd ~/.vim/bundle && git clone git://github.com/XXX/vim-{{_expr_:expand("%:p:t:r")}}.git + +Vundle: add below to .vimrc +> + Plugin 'XXX/vim-{{_expr_:expand("%:p:t:r")}}' +< + Run :PluginInstall + +NeoBundle: add below to .vimrc +> + NeoBundle 'XXX/vim-{{_expr_:expand("%:p:t:r")}}' +< + Run :NeoBundleInstall + +vim-plug: add below to .vimrc +> + Plug 'XXX/vim-{{_expr_:expand("%:p:t:r")}}' to .vimrc +< + Run :PlugInstall -- cgit v1.2.3-54-g00ecf