Emacs: Move some more jabber settings to org
This commit is contained in:
parent
e28ba29d84
commit
a5c9f6c9c3
2 changed files with 18 additions and 4 deletions
|
@ -23,7 +23,6 @@
|
|||
"Face for the supposedly empty line in commit messages."
|
||||
:group 'local)
|
||||
|
||||
(eval-after-load "jabber" '(oni:jabber-init))
|
||||
(eval-after-load "newst-treeview" '(require 'newsticker-init))
|
||||
(eval-after-load "org" '(require 'org-init))
|
||||
(eval-after-load "rainbow-mode" '(oni:rainbow-mode-init))
|
||||
|
@ -102,9 +101,6 @@
|
|||
(setq inhibit-startup-message t)
|
||||
(setq initial-major-mode 'emacs-lisp-mode)
|
||||
(setq initial-scratch-message nil)
|
||||
(setq jabber-account-list '(("ryuslash@jabber.org")
|
||||
("tom@ryuslash.org/drd"
|
||||
(:connection-type . ssl))))
|
||||
(setq jabber-avatar-cache-directory "~/.emacs.d/jabber-avatars/")
|
||||
(setq jabber-chat-buffer-format "*jab:%n*")
|
||||
(setq jabber-chat-buffer-show-avatar nil)
|
||||
|
|
|
@ -487,6 +487,16 @@
|
|||
|
||||
* jabber
|
||||
|
||||
Don't echo presence updates in the message area.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(defun oni:jabber-init ()
|
||||
"Initialization function for jabber."
|
||||
(remove-hook 'jabber-alert-presence-hooks 'jabber-presence-echo))
|
||||
|
||||
(eval-after-load "jabber" '(oni:jabber-init))
|
||||
#+END_SRC
|
||||
|
||||
Require ~jabber-libnotify~ so we can use its alert functions.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
|
@ -517,6 +527,14 @@
|
|||
jabber-history-dir "~/.emacs.d/jabber-hist")
|
||||
#+END_SRC
|
||||
|
||||
Add some accounts.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(setq jabber-account-list '(("ryuslash@jabber.org")
|
||||
("tom@ryuslash.org/drd"
|
||||
(:connection-type . ssl))))
|
||||
#+END_SRC
|
||||
|
||||
* ido
|
||||
|
||||
Keep some buffers from showing up when using ido-mode. Either these
|
||||
|
|
Loading…
Reference in a new issue