Add some binds to quickly open shell/eshell/vterm
This commit is contained in:
parent
133c5d7a1f
commit
cc30977f77
12
README.org
12
README.org
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue