The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Vimpl - For managing your Vim config with Git.

VERSION

Version 0.01

SYNOPSIS

Use Vimpl to manage your Vim plugins with Git and mirrors listed on Vim-scripts.org

vimpl [--update] <command> [<args>]

Commands:

        init - Initializes a git repo in your $HOME/.vim folder and installs 
                Pathogen.vim as a git submodule.

        restore <gitrepo> - Clones the provided git repository into $HOME/.vim
                Initializes all git submodules and updates all submodules.

        search <vim plugins>... - Provides a list of matching plugins found
                on vim-scripts.org for each name provided.

        install <vim plugins>... - Installs provided Vim plugin names as
                git submodules from their respective vim-scripts.org mirrors.

        list - Lists the installed Vim plugins (omits Pathogen.vim from
                the list)

        remove <vim plugins>... - Removes provided Vim plugins.
                Must match the names in 'list'.

        pull [config|plugin|all] - Does a 'git pull origin master' for either
                the remote for the $HOME/.vim repo , git submodules or both.
                If not specified, plugins only.

        update - Updates the local list of plugin mirrors from vim-scripts.org.
                Prefacing any command with '--update' will trigger an update before
                the command is processed.

        backup - If the $HOME/.vim repo already has a remote origin,
                'backup' will push to it.

                backup github <name> [public|private] - Vimpl will attempt to
                        create a repo for you on GitHub <name> using credentials in your
                        $HOME/.gitconfig .  Vimpl will then push your .vim config to
                        the fresh repo.

                backup <gitrepo> - Vimpl will attempt to set the provided repo as
                        the remote origin in $HOME/.vim and push to it.

EXAMPLES

$ vimpl init

$ vimpl install SelectBuf SuperTab The-NERD-tree Wombat

$ vimpl pull plugins

AUTHOR

Colin Kennedy, <moshen.colin at gmail.com>

BUGS

Please report any bugs or feature requests through the web interface at https://github.com/moshen/Vimpl/Issues. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Vimpl

You can also look for information at:

ACKNOWLEDGEMENTS

The inspiring GitHub script mirrors at http://vim-scripts.org.

LICENSE AND COPYRIGHT

Copyright 2011 Colin Kennedy.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.