Commit Diff


commit - 55091167c3506eda81107b6315018b82cb8a75eb
commit + d06f9880de206d7ff5133d5ddea7cd0f67f3cb6a
blob - d2dbdb840e3005ab1e6282a2eccf6824fd8510e4
blob + 84830bd76296ec0e5644fbebc59e9b5059ed504b
--- README.md
+++ README.md
@@ -15,11 +15,20 @@ require the library.
 (cl-pushnew 'Got vc-handled-backends)
 ```
 
+It's highly recommended to add `".got"` to the list of
+`vc-directory-exclusion-list`.
+
+```emacs-lisp
+(cl-pushnew ".got" vc-directory-exclusion-list)
+```
+
 With `use-package` something like this should be enough:
 
 ```emacs-lisp
 (use-package vc-got
   :load-path "/path/to/vc-got/"
-  :init (cl-pushnew 'Got vc-handled-backends)
-  :defer t)
+  :defer t
+  :init
+  (cl-pushnew 'Got vc-handled-backends)
+  (cl-pushnew ".got" vc-directory-exclusion-list))
 ```