From e5946fc02efea2dc4a6cb0d616a51b3e94c1f33d Mon Sep 17 00:00:00 2001
From: Fabio Rehm <fgrehm@gmail.com>
Date: Tue, 11 Feb 2014 22:45:04 -0200
Subject: [PATCH] Update usage docs

---
 docs/usage.md | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/docs/usage.md b/docs/usage.md
index e3d71dd..8b810c7 100644
--- a/docs/usage.md
+++ b/docs/usage.md
@@ -64,13 +64,20 @@ on your current project directory.
 
 This is the easiest way to get started with plugin and is enabled by default.
 Under the hood, `vagrant-cachier` does its best to find out what is supported on the
-guest machine and will set buckets accordingly
+guest machine and will set buckets accordingly.
 
+If you want that behavior to be disabled, you can set `cache.auto_detect` to `false`
+from your Vagrantfile:
 
-By adding the code below to
-your `Vagrantfile` you can enable automatic detection of supported cache _buckets_.
-
-This will make .
+```ruby
+Vagrant.configure("2") do |config|
+  config.vm.box = 'some-box'
+  if Vagrant.has_plugin?("vagrant-cachier")
+    config.cache.scope       = :machine # or :box
+    config.cache.auto_detect = false
+  end
+end
+```
 
 ## Enable buckets as needed
 
@@ -79,6 +86,7 @@ are configured, you can do so by "cherry picking" them on your `Vagrantfile`:
 
 ```ruby
 Vagrant.configure("2") do |config|
+  config.cache.auto_detect = false
   config.cache.enable :apt
   config.cache.enable :gem
 end