branch: externals/vc-got
commit 1ca0183c11f30079825dbc21fa58e34fed7062b0
Author: Omar Polo <[email protected]>
Commit: Omar Polo <[email protected]>
Summary: fix use-package example
---
README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index ddf86cc..3f62563 100644
--- a/README.md
+++ b/README.md
@@ -20,5 +20,6 @@ With `use-package` something like this should be enough:
```emacs-lisp
(use-package vc-got
:load-path "/path/to/vc-got/"
- :init (push 'Got vc-handled-backends))
+ :init (cl-pushnew 'Got vc-handled-backends)
+ :defer t)
```