[Emacs] Remove chat clients

This commit is contained in:
Kat Huang 2023-08-04 07:55:53 +00:00
parent b14414aea8
commit b5670f4b73

View File

@ -4205,43 +4205,6 @@ crux-reopen-as-root-mode makes it so that any file owned by root will automatica
;; (setq gptel-model "gpt-4")
))
#+end_src
* Chat
** erc
#+BEGIN_SRC emacs-lisp
(use-package erc
:disabled t
:commands erc
:config
(progn
;; (add-to-list 'erc-modules 'notifications)
;; logging:
(use-package erc-colorize
:config
(erc-colorize-mode 1))))
#+END_SRC
** bitlbee
#+BEGIN_SRC emacs-lisp
(use-package bitlbee
:disabled t
:config
(progn
(defvar bitlbee-password "geheim")
(add-hook 'erc-join-hook 'bitlbee-identify)
(defun bitlbee-identify ()
"If we're on the bitlbee server, send the identify command to the
&bitlbee channel."
(when (and (string= "localhost" erc-session-server)
(string= "&bitlbee" (buffer-name)))
(erc-message "PRIVMSG" (format "%s identify %s"
(erc-default-target)
bitlbee-password))))))
#+END_SRC
** slack
#+BEGIN_SRC emacs-lisp
(use-package slack
:commands slack-start)
#+END_SRC
* Cooperation
** togetherly
#+BEGIN_SRC emacs-lisp