Add some binds to quickly open shell/eshell/vterm

This commit is contained in:
Evie Litherland-Smith 2023-12-19 15:13:08 +00:00
parent 133c5d7a1f
commit cc30977f77

View file

@ -148,6 +148,18 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia
:ensure t :ensure t
:init (which-function-mode)) :init (which-function-mode))
#+end_src #+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 * UI
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setq use-dialog-box nil (setq use-dialog-box nil