From cc30977f775642bba7aaeaeee17726f800b6eda9 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 19 Dec 2023 15:13:08 +0000 Subject: [PATCH] Add some binds to quickly open shell/eshell/vterm --- README.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.org b/README.org index 1b6ec08..b54c692 100644 --- a/README.org +++ b/README.org @@ -148,6 +148,18 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia :ensure t :init (which-function-mode)) #+end_src + +** Shells and terminals +#+begin_src emacs-lisp + (use-package shell + :bind (("C-c t s" . shell))) + + (use-package eshell + :bind (("C-c t e" . eshell))) + + (use-package vterm + :bind (("C-c t v" . vterm))) +#+end_src * UI #+begin_src emacs-lisp (setq use-dialog-box nil