Browse Source

Install vterm

main
parent
commit
36e97cfd32
  1. 13
      README.org
  2. 5
      modules/editor.el

13
README.org

@ -474,6 +474,19 @@ Open an =eshell= buffer with =SPC e=.
"e" '(eshell :which-key "Shell"))
#+end_src
Configure =vterm=, a complete POSIX compliant shell within Emacs, this is suitable when =eshell= is not up to the task.
#+begin_src emacs-lisp
(use-package vterm)
#+end_src
Open a =vterm= buffer with =SPC v=.
#+begin_src emacs-lisp
(dotfiles/leader
"v" '(vterm :which-key "Terminal"))
#+end_src
*** Source
Another hallmark feature is [[https://github.com/magit/magit][Magit]], a complete git porcelain within Emacs.

5
modules/editor.el

@ -62,6 +62,11 @@
(dotfiles/leader
"e" '(eshell :which-key "Shell"))
(use-package vterm)
(dotfiles/leader
"v" '(vterm :which-key "Terminal"))
(use-package magit
:custom (magit-display-buffer-function
#'magit-display-buffer-same-window-except-diff-v1))

Loading…
Cancel
Save