From 36e97cfd3235ee5aebcad9dbee86f8f284083701 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 11 Feb 2021 23:01:04 +0000 Subject: [PATCH] Install vterm --- README.org | 13 +++++++++++++ modules/editor.el | 5 +++++ 2 files changed, 18 insertions(+) diff --git a/README.org b/README.org index dd5d337..e447279 100644 --- a/README.org +++ b/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. diff --git a/modules/editor.el b/modules/editor.el index 3388f62..4a04109 100644 --- a/modules/editor.el +++ b/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))