diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2018-03-06 21:58:02 -0500 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2018-03-06 21:58:02 -0500 |
commit | 461b0e8969b89ea37cc78867f333494b1d0e5de2 (patch) | |
tree | a67a4a606d8b2b897b308c098a983b1e2d3085da /man | |
parent | 9b3aa05cd4d579d15cf3602e373749b4ed387748 (diff) |
Adds License, Readme, and man files
Diffstat (limited to 'man')
-rw-r--r-- | man/plug.1 | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/man/plug.1 b/man/plug.1 new file mode 100644 index 0000000..14cf7f2 --- /dev/null +++ b/man/plug.1 @@ -0,0 +1,101 @@ +.TH PLUG 1 "2018 February 15" "PlugVim 0.0.1" "PlugVim Manual" +.SH NAME +plug - manages vim plugins using git submodules + +.SH SYNOPSIS +.nf +\fBplug install\fP [<options>] "remote git repo" +\fBplug update\fP [<options>] +\fBplug remove\fP [<options>] plugin-name +\fBplug list\fP [<options>] +\fBplug help\fP +\fBplug version\fP +.fi + +.SH DESCRIPTION +plug is a simple vim plugin manager that uses vim 8's native plugin +support and git submodules. + + +.SH COMMANDS +.TP +\fBinstall\fP [\fI-oc\fP] [-g \fIGIT-REPO\fP] [-d \fI.vim-LOCATION\fP] plugin-name + +Install plugin at remote git repo as submodule in GIT-REPO. + + +.TP +\fBupdate\fP [\fI-c\fP] [-g \fIGIT-REPO\fP] [-j \fITHREAD-COUNT\fP] "remote git repo" +Update all git modules. + +.TP +\fBremove\fP [\fI-oc\fP] [-g \fIGIT-REPO\fP] [-d \fI.vim-LOCATION\fP] plugin-name +Remove plugin. + +.TP +\fBlist\fP [-g \fIGIT-REPO\fP] +List installed plugins. + +.TP +\fBhelp\fP +Display usage information. + +.TP +\fBversion\fP +Display version information. + +.SH OPTIONS +.PP +\-o +.RS 4 +Store plugin in opt folder rather than start. +.RE + +.PP +\-c +.RS 4 +Commit changes to repo. This will commit any staged changes, I +recommend committing these with a meaningful message before committing +with plug. +.RE + +.PP +\-g \fIGIT-REPO\fP +.RS 4 +Use GIT-REPO as directory for git commands uses "git -C +GIT-REPO" +Default: ~/dotfiles/ +.RE + +.PP +\-d \fIdirectory\fP +.RS 4 +Uses directory as location of .vim in git repo +Default: GIT_REPO/vim/ +.RE + +.PP +\-j +.RS 4 +Number of jobs for "git submodule update" to use. +.RE + +.SH AUTHOR +.B plug +was written by +.MT tuckerevans24@gmail.com +Tucker Evans +.ME . + +.SH "SEE ALSO" +git-submodule(1), vim(1) + +.SH BUGS +This is a very early version, there are probably, I'm just not aware +of them yet. +.PP +You can report bugs +.UR https://github.com/tuckerevans/plugvim/issues +here +.UE . + |