Pull in twittering-mode

This commit is contained in:
Jeremy Dormitzer 2020-05-18 12:31:51 -04:00
parent 773e055e8e
commit 9196b1abe3

View File

@ -6388,3 +6388,14 @@ Jira in Emacs:
`(:name "Jira" :file-path ,org-jira-working-dir)
t))
#+END_SRC
* Twitter
Socially networking from Emacs:
#+BEGIN_SRC emacs-lisp
(use-package twittering-mode
:commands (twit)
:init
(leader-def-key "at" #'twit)
:config
(setq twittering-use-master-password t))
#+END_SRC