diff options
author | David Robillard <d@drobilla.net> | 2024-09-04 14:12:47 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-09-04 14:13:27 -0400 |
commit | 90204977d2f33da61fc91061668f2ee2194075b3 (patch) | |
tree | 03b4dabceea2707e6fa030f59a78aa3f3c52822e | |
parent | d6b88c81342853cafafe2c4a62edd03c25ad8df6 (diff) | |
download | dotfiles-90204977d2f33da61fc91061668f2ee2194075b3.tar.gz dotfiles-90204977d2f33da61fc91061668f2ee2194075b3.tar.bz2 dotfiles-90204977d2f33da61fc91061668f2ee2194075b3.zip |
Remove Jabber chat format customization
These are causing annoying escaping issues and I never use them anyway, so just
remove them.
-rw-r--r-- | emacs/.emacs.d/init.el | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index 2a3219b..23aefc8 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -220,37 +220,6 @@ (:port . 5223) (:connection-type . ssl)))) '(jabber-chat-buffer-show-avatar nil) - '(jabber-chat-header-line-format - '("" - (:eval - (jabber-jid-displayname jabber-chatting-with)) - " " - (:eval - (let - ((buddy - (jabber-jid-symbol jabber-chatting-with))) - (propertize - (or - (cdr - (assoc - (get buddy 'show) - jabber-presence-strings)) - (get buddy 'show)) - 'face - (or - (cdr - (assoc - (get buddy 'show) - jabber-presence-faces)) - 'jabber-roster-user-online)))) - " " - (:eval - (jabber-fix-status - (get - (jabber-jid-symbol jabber-chatting-with) - 'status))) - " " jabber-events-message " " jabber-chatstates-message)) - '(jabber-roster-line-format " %c %-25n %u %-8s %S") '(js-indent-level 2) '(jshint-mode-node-program "nodejs") '(magit-auto-revert-mode nil) |