Created
May 12, 2015 19:22
-
-
Save ssbb/b6df147302041642ce11 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'twittering-mode) | |
(twittering-enable-unread-status-notifier) | |
(setq twittering-use-master-password t) | |
(add-hook 'twittering-mode-hook | |
(lambda () | |
(setq twittering-timer-interval 300) | |
(setq twittering-url-show-status nil) | |
(setq twittering-icon-mode nil) | |
(setq twittering-status-format "%i %s\n%FILL[ ]{%T}\n %FACE[glyphless-char]{%@ from %f%L%r%R}\n") | |
(set-face-attribute 'twittering-username-face nil | |
:underline nil | |
:weight 'bold | |
:foreground "darksalmon"))) | |
(add-hook 'twittering-edit-mode-hook | |
(lambda () | |
(auto-fill-mode -1) | |
(visual-line-mode))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment