aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.org13
1 files changed, 10 insertions, 3 deletions
diff --git a/README.org b/README.org
index 52a1800..18181e5 100644
--- a/README.org
+++ b/README.org
@@ -23,7 +23,7 @@ Or, with =use-package=:
#+BEGIN_SRC emacs-lisp
(use-package mastodon
- :load-path "/path/to/mastodon.el/lisp")
+ :ensure t)
#+END_SRC
*** MELPA
@@ -56,9 +56,17 @@ if you have Discover, add the following to your Emacs init configuration:
#+BEGIN_SRC emacs-lisp
(require 'mastodon-discover)
- (with-eval-after-load 'mastodon (mastodon-discover--init))
+ (with-eval-after-load 'mastodon (mastodon-discover))
#+END_SRC
+Or, with =use-package=:
+
+#+BEGIN_SRC emacs-lisp
+ (use-package mastodon
+ :ensure t
+ :config
+ (mastodon-discover))
+#+END_SRC
** Usage
*** 2 Factor Auth
@@ -159,7 +167,6 @@ Toot visibility can also be changed on a per-toot basis from the new toot buffer
| =C-c C-w= | Add content warning |
| =C-c C-v= | Change toot visibility |
|-----------+------------------------|
->>>>>>> Make default visibility customizable; add documentation.
** Roadmap