summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2025-03-30 21:24:32 +0300
committerThanos Apollo <[email protected]>2025-03-30 21:24:32 +0300
commitf539d9a09e5fe57674d9df8f683be76f1a67d794 (patch)
treeb0893b226e15e781c2d16f68a750a75bcc5b71c3
parent0239380b281ae9bd6a1018683eff53eec779965c (diff)
emacs: Add jabber.
-rw-r--r--.config/emacs/init.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el
index 39524e8..45ccbb0 100644
--- a/.config/emacs/init.el
+++ b/.config/emacs/init.el
@@ -1381,6 +1381,24 @@ Useful if you write in langs like Greek :)."
(use-package 0x0
:ensure nil)
+(unless (package-installed-p 'jabber)
+ (require 'package-vc)
+ (add-to-list 'package-vc-selected-packages
+ '(jabber
+ :url "https://codeberg.org/emacs-jabber/emacs-jabber"
+ :branch "production"
+ :lisp-dir "lisp"
+ :doc "README.org"))
+ ;; Change the path below to the location of your local jabber.el repository.
+ (package-vc-install-from-checkout "~/Dev/emacs-lisp/emacs-jabber" "jabber"))
+
+(use-package jabber
+ :ensure nil
+ :load-path "~/Dev/emacs-lisp/emacs-jabber/lisp"
+ :custom
+ (jabber-roster-line-format " %c %-25n %u %-8s %S")
+ (jabber-title-medium '((t (:inherit variable-pitch)))))
+
;; Misc Functions ;;
;;;;;;;;;;;;;;;;;;;;