diff options
-rw-r--r-- | .config/emacs/init.el | 18 |
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 ;; ;;;;;;;;;;;;;;;;;;;; |