From 97ce4721c827518a9c7758986702d2b93e32d710 Mon Sep 17 00:00:00 2001 From: Random936 Date: Tue, 26 Dec 2023 10:53:33 -0800 Subject: [PATCH] Readded multi-vterm to emacs --- .emacs.d/config.org | 2 +- .emacs.d/terminal.org | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 5b4c4a6..72bc6ff 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -338,7 +338,7 @@ General allows you to setup a prefix key easily. This makes it really easy to se (jm/leader-keys ; Example of a keybinding should be changed later "t" '(counsel-load-theme :which-key "Choose theme") - "v" '(vterm :which-key "Open vterm terminal") + "v" '(multi-vterm :which-key "Open vterm terminal") "r" '(rename-buffer :which-key "Rename buffer") ; Org mode related keybindings diff --git a/.emacs.d/terminal.org b/.emacs.d/terminal.org index 9a9cc4b..57fa694 100644 --- a/.emacs.d/terminal.org +++ b/.emacs.d/terminal.org @@ -18,6 +18,15 @@ There are a few packages that you need to install in order to use VTerm. sudo apt install cmake libtool-bin #+end_src + +* Multi-Vterm + +Multi-vterm is a package that adds the capability to easily create multiple vterm terminal buffers without having to manually rename them each time. + +#+begin_src emacs-lisp +(use-package multi-vterm) +#+end_src + * Change Terminal Font When using zsh with powerlevel10k, the ~MesloLGS NF~ font is required to make the prompt align properly. Due to this, this code is implemented to change the font only when VTerm is being used.