diff options
-rw-r--r-- | emacs.d/init.el | 49 |
1 files changed, 48 insertions, 1 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index d312358..233760b 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -84,6 +84,48 @@ "find . -type f -not -name \"*.svn-base\" -print0 | xargs -0 grep -I -n -s -F ") '(indicate-empty-lines t) '(inhibit-startup-screen t) + '(jabber-account-list + (quote + (("david.e.robillard@gmail.com" + (:network-server . "talk.google.com") + (:port . 5223) + (:connection-type . ssl))))) + '(jabber-chat-buffer-show-avatar nil) + '(jabber-chat-header-line-format + (quote + ("" + (:eval + (jabber-jid-displayname jabber-chatting-with)) + " " + (:eval + (let + ((buddy + (jabber-jid-symbol jabber-chatting-with))) + (propertize + (or + (cdr + (assoc + (get buddy + (quote show)) + jabber-presence-strings)) + (get buddy + (quote show))) + (quote face) + (or + (cdr + (assoc + (get buddy + (quote show)) + jabber-presence-faces)) + (quote jabber-roster-user-online))))) + " " + (:eval + (jabber-fix-status + (get + (jabber-jid-symbol jabber-chatting-with) + (quote status)))) + " " jabber-events-message " " jabber-chatstates-message))) + '(jabber-roster-line-format " %c %-25n %u %-8s %S") '(jshint-mode-node-program "nodejs") '(magit-diff-refine-hunk (quote all)) '(menu-bar-mode nil) @@ -158,8 +200,13 @@ '(fringe ((((class color) (background dark)) (:background "grey25")))) '(header-line ((t (:inherit mode-line)))) '(highlight-beyond-fill-column-face ((t (:background "#530102")))) + '(jabber-chat-prompt-foreign ((t (:foreground "#00736F" :weight bold)))) '(jabber-chat-prompt-local ((t (:foreground "#859900" :weight bold)))) - '(jabber-rare-time-face ((t (:foreground "#6C71C4" :underline nil)))) + '(jabber-rare-time-face ((t (:foreground "#6C71C4" :weight bold)))) + '(jabber-roster-user-away ((t (:foreground "#546E00" :slant italic :weight normal)))) + '(jabber-roster-user-online ((t (:foreground "#00629D" :slant normal :weight bold)))) + '(jabber-title-large ((t (:foreground "white" :weight bold)))) + '(jabber-title-medium ((t (:weight bold :height 1.0 :width expanded)))) '(link ((((class color) (min-colors 88) (background dark)) (:foreground "#268BD2" :inverse-video nil :underline t)))) '(link-visited ((default (:inherit link)) (((class color) (background dark)) (:foreground "#6C71C4")))) '(magit-diff-added ((t (:foreground "#657900")))) |