diff options
author | jao <jao@gnu.org> | 2022-03-03 05:55:45 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-03-03 22:17:26 +0000 |
commit | 31c1da1f0722ab0b85d022062f8e5eb46564f920 (patch) | |
tree | 5fb14ca2cb47e6da1f6a58399fb0453446e4ff21 /attic | |
parent | eeeea452c605cb105adacef018ded3c6e3b77d2f (diff) | |
download | elibs-31c1da1f0722ab0b85d022062f8e5eb46564f920.tar.gz elibs-31c1da1f0722ab0b85d022062f8e5eb46564f920.tar.bz2 |
whitespace
Diffstat (limited to 'attic')
-rw-r--r-- | attic/misc.org | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/attic/misc.org b/attic/misc.org index 74667ad..e2aa303 100644 --- a/attic/misc.org +++ b/attic/misc.org @@ -1133,6 +1133,24 @@ ;; (spam-initialize) #+end_src +* dtach + #+begin_src emacs-lisp + (use-package dtache + :ensure t + :hook (after-init . dtache-setup) + :bind (([remap async-shell-command] . dtache-shell-command))) + + (global-set-key (kbd "C-c D") dtache-action-map) + + (use-package dtache-eshell + :hook (eshell-mode . dtache-eshell-mode)) + + (use-package dtache-consult + :after dtache + ;; :bind ([remap dtache-open-session] . dtache-consult-session) + ) + + #+end_src * snippets #+begin_src emacs-lisp (defun jao-minibuffer--text-with-padding (text) |