Skip to content

Instantly share code, notes, and snippets.

@maehrm
Created May 12, 2011 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maehrm/968172 to your computer and use it in GitHub Desktop.
Save maehrm/968172 to your computer and use it in GitHub Desktop.
twittering-modeの設定
;; Twitter
(add-to-list 'load-path "~/.emacs.d/twittering-mode")
(require 'twittering-mode)
(setq twittering-username "maehrm")
(add-hook 'twittering-mode-hook
(lambda ()
(twittering-icon-mode t)
(twittering-scroll-mode t)
(set-face-bold-p 'twittering-username-face t)))
(setq twittering-account-authorization 'authorized)
(setq twittering-oauth-access-token-alist
'(("oauth_token" . "****")
("oauth_token_secret" . "****")
("user_id" . "****")
("screen_name" . "maehrm")))
(setq twittering-tinyurl-service 'goo.gl)
(setq twittering-allow-insecure-serer-cert t)
(setq twittering-connection-type-order '(wget native))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment