Skip to content

Commit e34fb82

Browse files
committed
comment jabber
1 parent e247388 commit e34fb82

File tree

2 files changed

+74
-74
lines changed

2 files changed

+74
-74
lines changed

README.org

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,49 +1030,49 @@
10301030
* Internet
10311031
** Jabber
10321032
#+BEGIN_SRC emacs-lisp
1033-
(use-package jabber
1034-
:defer t
1035-
:config
1036-
(setq jabber-history-enabled t
1037-
jabber-use-global-history nil
1038-
fsm-debug nil)
1039-
:custom
1040-
(jabber-auto-reconnect t)
1041-
(jabber-chat-buffer-format "*-jc-%n-*")
1042-
(jabber-groupchat-buffer-format "*-jg-%n-*")
1043-
(jabber-chat-foreign-prompt-format "▼ [%t] %n> ")
1044-
(jabber-chat-local-prompt-format "▲ [%t] %n> ")
1045-
(jabber-muc-colorize-foreign t)
1046-
(jabber-muc-private-buffer-format "*-jmuc-priv-%g-%n-*")
1047-
(jabber-rare-time-format "%e %b %Y %H:00")
1048-
(jabber-resource-line-format " %r - %s [%p]")
1049-
(jabber-roster-buffer "*-jroster-*")
1050-
(jabber-roster-line-format "%c %-17n")
1051-
(jabber-roster-show-bindings nil)
1052-
(jabber-roster-show-title nil)
1053-
(jabber-roster-sort-functions (quote (jabber-roster-sort-by-status jabber-roster-sort-by-displayname jabber-roster-sort-by-group)))
1054-
(jabber-show-offline-contacts nil)
1055-
(jabber-show-resources nil))
1056-
1057-
(use-package jabber-otr
1058-
:ensure t
1059-
:defer t)
1033+
;; (use-package jabber
1034+
;; :defer t
1035+
;; :config
1036+
;; (setq jabber-history-enabled t
1037+
;; jabber-use-global-history nil
1038+
;; fsm-debug nil)
1039+
;; :custom
1040+
;; (jabber-auto-reconnect t)
1041+
;; (jabber-chat-buffer-format "*-jc-%n-*")
1042+
;; (jabber-groupchat-buffer-format "*-jg-%n-*")
1043+
;; (jabber-chat-foreign-prompt-format "▼ [%t] %n> ")
1044+
;; (jabber-chat-local-prompt-format "▲ [%t] %n> ")
1045+
;; (jabber-muc-colorize-foreign t)
1046+
;; (jabber-muc-private-buffer-format "*-jmuc-priv-%g-%n-*")
1047+
;; (jabber-rare-time-format "%e %b %Y %H:00")
1048+
;; (jabber-resource-line-format " %r - %s [%p]")
1049+
;; (jabber-roster-buffer "*-jroster-*")
1050+
;; (jabber-roster-line-format "%c %-17n")
1051+
;; (jabber-roster-show-bindings nil)
1052+
;; (jabber-roster-show-title nil)
1053+
;; (jabber-roster-sort-functions (quote (jabber-roster-sort-by-status jabber-roster-sort-by-displayname jabber-roster-sort-by-group)))
1054+
;; (jabber-show-offline-contacts nil)
1055+
;; (jabber-show-resources nil))
1056+
1057+
;; (use-package jabber-otr
1058+
;; :ensure t
1059+
;; :defer t)
10601060

10611061
;; (use-package secrets-jabber
10621062
;; :defer t
10631063
;; :load t
10641064
;; :after jabber)
10651065

1066-
(use-package point-im
1067-
:defer t
1068-
:defines point-im-reply-id-add-plus
1069-
:after jabber
1070-
:quelpa
1071-
(point-im :repo "a13/point-im.el" :fetcher github :version original)
1072-
:custom
1073-
(point-im-reply-id-add-plus nil)
1074-
:hook
1075-
(jabber-chat-mode . point-im-mode))
1066+
;; (use-package point-im
1067+
;; :defer t
1068+
;; :defines point-im-reply-id-add-plus
1069+
;; :after jabber
1070+
;; :quelpa
1071+
;; (point-im :repo "a13/point-im.el" :fetcher github :version original)
1072+
;; :custom
1073+
;; (point-im-reply-id-add-plus nil)
1074+
;; :hook
1075+
;; (jabber-chat-mode . point-im-mode))
10761076

10771077
#+END_SRC
10781078

init.el

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -822,49 +822,49 @@
822822
:ensure t
823823
:defer t)
824824

825-
(use-package jabber
826-
:defer t
827-
:config
828-
(setq jabber-history-enabled t
829-
jabber-use-global-history nil
830-
fsm-debug nil)
831-
:custom
832-
(jabber-auto-reconnect t)
833-
(jabber-chat-buffer-format "*-jc-%n-*")
834-
(jabber-groupchat-buffer-format "*-jg-%n-*")
835-
(jabber-chat-foreign-prompt-format "▼ [%t] %n> ")
836-
(jabber-chat-local-prompt-format "▲ [%t] %n> ")
837-
(jabber-muc-colorize-foreign t)
838-
(jabber-muc-private-buffer-format "*-jmuc-priv-%g-%n-*")
839-
(jabber-rare-time-format "%e %b %Y %H:00")
840-
(jabber-resource-line-format " %r - %s [%p]")
841-
(jabber-roster-buffer "*-jroster-*")
842-
(jabber-roster-line-format "%c %-17n")
843-
(jabber-roster-show-bindings nil)
844-
(jabber-roster-show-title nil)
845-
(jabber-roster-sort-functions (quote (jabber-roster-sort-by-status jabber-roster-sort-by-displayname jabber-roster-sort-by-group)))
846-
(jabber-show-offline-contacts nil)
847-
(jabber-show-resources nil))
848-
849-
(use-package jabber-otr
850-
:ensure t
851-
:defer t)
825+
;; (use-package jabber
826+
;; :defer t
827+
;; :config
828+
;; (setq jabber-history-enabled t
829+
;; jabber-use-global-history nil
830+
;; fsm-debug nil)
831+
;; :custom
832+
;; (jabber-auto-reconnect t)
833+
;; (jabber-chat-buffer-format "*-jc-%n-*")
834+
;; (jabber-groupchat-buffer-format "*-jg-%n-*")
835+
;; (jabber-chat-foreign-prompt-format "▼ [%t] %n> ")
836+
;; (jabber-chat-local-prompt-format "▲ [%t] %n> ")
837+
;; (jabber-muc-colorize-foreign t)
838+
;; (jabber-muc-private-buffer-format "*-jmuc-priv-%g-%n-*")
839+
;; (jabber-rare-time-format "%e %b %Y %H:00")
840+
;; (jabber-resource-line-format " %r - %s [%p]")
841+
;; (jabber-roster-buffer "*-jroster-*")
842+
;; (jabber-roster-line-format "%c %-17n")
843+
;; (jabber-roster-show-bindings nil)
844+
;; (jabber-roster-show-title nil)
845+
;; (jabber-roster-sort-functions (quote (jabber-roster-sort-by-status jabber-roster-sort-by-displayname jabber-roster-sort-by-group)))
846+
;; (jabber-show-offline-contacts nil)
847+
;; (jabber-show-resources nil))
848+
849+
;; (use-package jabber-otr
850+
;; :ensure t
851+
;; :defer t)
852852

853853
;; (use-package secrets-jabber
854854
;; :defer t
855855
;; :load t
856856
;; :after jabber)
857857

858-
(use-package point-im
859-
:defer t
860-
:defines point-im-reply-id-add-plus
861-
:after jabber
862-
:quelpa
863-
(point-im :repo "a13/point-im.el" :fetcher github :version original)
864-
:custom
865-
(point-im-reply-id-add-plus nil)
866-
:hook
867-
(jabber-chat-mode . point-im-mode))
858+
;; (use-package point-im
859+
;; :defer t
860+
;; :defines point-im-reply-id-add-plus
861+
;; :after jabber
862+
;; :quelpa
863+
;; (point-im :repo "a13/point-im.el" :fetcher github :version original)
864+
;; :custom
865+
;; (point-im-reply-id-add-plus nil)
866+
;; :hook
867+
;; (jabber-chat-mode . point-im-mode))
868868

869869
(use-package slack
870870
:ensure t

0 commit comments

Comments
 (0)