Marcus Geiger (aka. bwolf) is a programmer and emacs user.
The current emacs version he uses is GNU Emacs 24.0.93.1
My Emacs configuration is available at [[1]]
Recently I began using TwitteringMode and for my taste the timeline display contains to much clutter. I customized the twittering-status-format like this:
Relevant setting to get it: twittering-status-format:
(add-hook 'twittering-mode-hook
(lambda ()
(setq show-trailing-whitespace nil)
(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)
(set-face-attribute 'twittering-username-face nil :foreground "darksalmon")))
(add-hook 'twittering-edit-mode-hook
(lambda ()
(auto-fill-mode -1)))