From b5670f4b737383df6aa0309022cb3c9f4bf1e4fb Mon Sep 17 00:00:00 2001 From: Kat Huang Date: Fri, 4 Aug 2023 07:55:53 +0000 Subject: [PATCH] [Emacs] Remove chat clients --- dotfiles/emacs.d/README.org | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 4a8cbf7a..4d91603e 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -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