diff options
-rw-r--r-- | README.org | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -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 |