branch: elpa/inf-clojure
commit 55717d638dc1b5b6397fb2c3143720104522dcf1
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Add use-package installation example
use-package is built into Emacs 29+ and is the most common way to
manage packages in modern configs.
---
README.md | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/README.md b/README.md
index ce4c70b279..ad7461a6b3 100644
--- a/README.md
+++ b/README.md
@@ -122,6 +122,13 @@ or if you'd rather keep it in your Emacs config:
(package-install 'inf-clojure))
```
+With `use-package` (built into Emacs 29+):
+
+```emacs-lisp
+(use-package inf-clojure
+ :ensure t)
+```
+
If the installation doesn't work try refreshing the package list:
<kbd>M-x package-refresh-contents</kbd>