diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2016-04-07 13:49:25 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2016-04-07 13:49:25 +0900 |
commit | 0c661f5f888ea180d7aaeca13a9ef44bf22165d2 (patch) | |
tree | c57b9038818b71659e26237c67b6669201a82482 | |
parent | 7d69a5834c3278348939d4997d62fe330a1fa480 (diff) | |
download | vim-sonictemplate-0c661f5f888ea180d7aaeca13a9ef44bf22165d2.tar.gz vim-sonictemplate-0c661f5f888ea180d7aaeca13a9ef44bf22165d2.tar.bz2 vim-sonictemplate-0c661f5f888ea180d7aaeca13a9ef44bf22165d2.zip |
add installation section
-rw-r--r-- | template/help/snip-installation.txt | 26 |
1 files changed, 26 insertions, 0 deletions
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 |