From 178c90cc5ff7dfb8f24fb77b1ea3afdbf4b1e65f Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sat, 5 Oct 2024 15:31:27 -0400 Subject: [PATCH] vterm --- doom.d/init.el | 2 +- modules/home/all/emacs.nix | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doom.d/init.el b/doom.d/init.el index 77e8557..70bc66c 100644 --- a/doom.d/init.el +++ b/doom.d/init.el @@ -78,7 +78,7 @@ ;;eshell ; the elisp shell that works everywhere ;;shell ; simple shell REPL for Emacs ;;term ; basic terminal emulator for Emacs - ;;vterm ; the best terminal emulation in Emacs + vterm ; the best terminal emulation in Emacs :checkers syntax ; tasing you for every semicolon you forget diff --git a/modules/home/all/emacs.nix b/modules/home/all/emacs.nix index 771b3a8..020e7fe 100644 --- a/modules/home/all/emacs.nix +++ b/modules/home/all/emacs.nix @@ -14,7 +14,8 @@ in emacs = pkgs.emacs30; doomDir = self + /doom.d; experimentalFetchTree = true; # Disable if there are fetcher issues - extraPackages = epkgs: [ + extraPackages = epkgs: with epkgs; [ + vterm ]; }; }