Install multi-vterm with home-manager

This commit is contained in:
David Morgan 2023-08-15 15:58:17 +01:00
parent 010f149c8e
commit 258eb955c7
Signed by: djm
GPG Key ID: C171251002C200F2
3 changed files with 4 additions and 3 deletions

View File

@ -30,7 +30,8 @@
(delq 'eshell-handle-ansi-color eshell-output-filter-functions)
(setenv "TERM" "xterm-256color"))
(use-package multi-vterm
;; Installed with home-manager
(use-feature multi-vterm
:bind (("C-c t" . multi-vterm-next)
("C-x p t" . multi-vterm-project)
("C-c C-M-t" . multi-vterm)

View File

@ -32,7 +32,7 @@ in
coreutils
curl
diffutils
((emacsPackagesFor emacsMacport).emacsWithPackages(ps: [ ps.vterm ]))
((emacsPackagesFor emacs29-macport).emacsWithPackages(ps: [ ps.vterm ps.multi-vterm ]))
findutils
gh
gh-dash

View File

@ -7,7 +7,7 @@
programs.emacs = {
enable = true;
package = pkgs.emacs28NativeComp;
extraPackages = (epkgs: [ epkgs.vterm ] );
extraPackages = (epkgs: [ epkgs.vterm epkgs.multi-vterm ] );
};
home.packages = with pkgs; [