diff options
Diffstat (limited to 'attic')
-rw-r--r-- | attic/misc.org | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/attic/misc.org b/attic/misc.org new file mode 100644 index 0000000..e84cad0 --- /dev/null +++ b/attic/misc.org @@ -0,0 +1,22 @@ +* dtache + #+begin_src emacs-lisp + (use-package dtache + :ensure t + :hook (after-init . dtache-setup)) + + (use-package dtache-eshell + :after dtache + :hook (eshell-mode . dtache-eshell-mode)) + + (use-package dtache-consult + :after (consult dtache) + :bind ([remap dtache-open-session] . dtache-consult-session)) + #+end_src +* signel + #+begin_src emacs-lisp :tangle no + (jao-load-org "lib/net/signel.org") + (with-eval-after-load "tracking" + (jao-tracking-faces 'signel-notification) + (jao-shorten-modes 'signel-chat-mode)) + (setq signel-report-deliveries t) + #+end_src |