summaryrefslogtreecommitdiffhomepage
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org16
1 files changed, 16 insertions, 0 deletions
diff --git a/init.org b/init.org
index e455e2c..f2a99b4 100644
--- a/init.org
+++ b/init.org
@@ -2066,6 +2066,22 @@
(jao-eshell--kbds)
(add-hook 'eshell-mode-hook #'jao-eshell--kbds))
#+end_src
+*** dtache
+ #+begin_src emacs-lisp
+ (use-package dtache
+ :ensure t
+ :hook (after-init . dtache-setup))
+
+ (use-package dtache-eshell
+ :after dtache
+ :config (dtache-eshell-setup)
+ :hook (eshell-mode . dtache-eshell-mode))
+
+ (use-package dtache-consult
+ :after (consult dtache)
+ :bind ([remap dtache-open-session] . dtache-consult-session))
+
+ #+end_src
* Version control and CI
*** General options
#+begin_src emacs-lisp