diff options
author | Johnson Denen <johnson.denen@gmail.com> | 2017-04-22 16:35:40 -0400 |
---|---|---|
committer | Johnson Denen <johnson.denen@gmail.com> | 2017-04-22 16:35:40 -0400 |
commit | 5339f928c915298acc7a3c596d1b5c504b605e05 (patch) | |
tree | 0f40e1f98bdfa40089d85c4846f52f8abd9be6ba /README.org | |
parent | b7d9589a338cae7e61d986184b2a272e42edd15f (diff) |
Update README.org
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -104,7 +104,7 @@ filesystem, so you will have to re-authenticate when you close/reopen Emacs. ** Enabling Emojis -By default no emojis will appear in any of the posts or user names. In order to enable emojis you can install the `emojify` package. +By default no emojis will appear in any of the posts or user names. In order to enable emojis you can install the =emojify= package. Add [[http://melpa.org/#/emojify][MELPA]] to your list of package archives #+BEGIN_SRC elisp @@ -113,15 +113,15 @@ Add [[http://melpa.org/#/emojify][MELPA]] to your list of package archives (package-initialize) #+END_SRC -Update the contents of your package archive and download `emojify` +Update the contents of your package archive and download =emojify= -This only needs to be called once. i.e. you should not put it in your `.emacs` or `init.el` file. +This only needs to be called once. i.e. you should not put it in your =.emacs= or =init.el= file. #+BEGIN_SRC elisp (package-refresh-contents) (package-install 'emojify) #+END_SRC -If you would rather install `emojify` interactively you can do so by doing the following. +If you would rather install =emojify= interactively you can do so by doing the following. Refresh the package index #+BEGIN_QUOTE @@ -133,7 +133,7 @@ And then install it by doing M-x package-install RET emojify #+END_QUOTE -Once installed you can define a hook for `mastodon-mode` that call `emojify-mode` +Once installed you can define a hook for =mastodon-mode= that call =emojify-mode= #+BEGIN_SRC elisp (require 'emojify) (defun my-mastodon-hook-function () @@ -141,7 +141,6 @@ Once installed you can define a hook for `mastodon-mode` that call `emojify-mod (add-hook 'mastodon-mode-hook 'my-mastodon-hook-function) #+END_SRC - ** Roadmap [[https://github.com/jdenen/mastodon.el/milestone/1][Here]] are the features I plan to implement before putting mastodon.el on MELPA. |