commit 1ca0183c11f30079825dbc21fa58e34fed7062b0 from: Omar Polo date: Sat Dec 05 09:55:09 2020 UTC Summary: fix use-package example commit - 4571b1fd33cbe57979e5cfe154d6f966825cf481 commit + 1ca0183c11f30079825dbc21fa58e34fed7062b0 blob - ddf86cccb823b447d69e32315d8eb096fdf146fb blob + 3f6256317a105e676fed55b1b1cc9b06b8230fb6 --- README.md +++ README.md @@ -20,5 +20,6 @@ With `use-package` something like this should be enoug ```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) ```