README.md in vim-flavor-2.2.2 vs README.md in vim-flavor-3.0.0
- old
+ new
@@ -1,24 +1,24 @@
# vim-flavor, a tool to manage your favorite Vim plugins
[![Build Status](https://travis-ci.org/kana/vim-flavor.png)](https://travis-ci.org/kana/vim-flavor)
-[![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/kana/vim-flavor)
+[![Maintainability](https://api.codeclimate.com/v1/badges/97414d95fb6d19c7fb72/maintainability)](https://codeclimate.com/github/kana/vim-flavor/maintainability)
## Getting started
cd $YOUR_REPOSITORY_FOR_DOTFILES
- cat >VimFlavor <<'END'
+ cat >Flavorfile <<'END'
# * Declare using git://github.com/kana/vim-textobj-indent.git
# * vim-flavor fetches git://github.com/$USER/$REPO.git
# if the argument is written in '$USER/$REPO' format.
# * kana/vim-textobj-indent requires kana/vim-textobj-user.
# Such dependencies are automatically installed
- # if the flavored plugin declares its dependencies with VimFlavor file.
+ # if the flavored plugin declares its dependencies with Flavorfile.
flavor 'kana/vim-textobj-indent'
# * Declare using git://github.com/vim-scripts/fakeclip.git
# * vim-flavor fetches git://github.com/vim-scripts/$REPO.git
# if the argument is written in '$REPO' format.
@@ -37,21 +37,16 @@
# * Declare using kana/vim-smarttill 0.1.0 or later.
flavor 'kana/vim-smarttill', '>= 0.1.0'
END
- # Fetch the plugins declared in the VimFlavor,
- # create VimFlavor.lock for a snapshot of all plugins and versions,
- # then install the plugins and a bootstrap script into ~/.vim etc.
+ # Fetch the plugins declared in the Flavorfile,
+ # create Flavorfile.lock for a snapshot of all plugins and versions,
+ # then install the plugins into ~/.vim.
vim-flavor install
- # Add the following line into the first line of your vimrc:
- #
- # runtime flavors/bootstrap.vim
- vim vimrc
-
- git add VimFlavor VimFlavor.lock vimrc
+ git add Flavorfile Flavorfile.lock
git commit -m 'Use vim-flavor to manage my favorite Vim plugins'
See also
[the documentation on relish](https://www.relishapp.com/kana/vim-flavor) or
`features/` directory for the details.
@@ -67,11 +62,11 @@
## Author
-* [Kana Natsuno](http://whileimautomaton.net/)
- (also known as [@kana1](http://twitter.com/kana1))
+* [Kana Natsuno](https://whileimautomaton.net/)
+ (also known as [@kana1](https://twitter.com/kana1))
<!-- vim: set expandtab shiftwidth=4 softtabstop=4 textwidth=78 : -->