Re-enable Emacs vterm

This commit is contained in:
2022-05-17 16:47:06 -07:00
parent f7f7152da6
commit 3217ba8549
3 changed files with 6 additions and 2 deletions

View File

@@ -128,3 +128,4 @@
;; Insist on using regular "ls", to override Doom's insistence on "gls" on Mac+Nix ;; Insist on using regular "ls", to override Doom's insistence on "gls" on Mac+Nix
(setq insert-directory-program "ls") (setq insert-directory-program "ls")
(setq vterm-shell "xonsh")

View File

@@ -63,7 +63,7 @@
;;eshell ; a consistent, cross-platform shell (WIP) ;;eshell ; a consistent, cross-platform shell (WIP)
;;shell ; a terminal REPL for Emacs ;;shell ; a terminal REPL for Emacs
;;term ; terminals in Emacs ;;term ; terminals in Emacs
;;vterm ; another terminals in Emacs vterm ; another terminals in Emacs
:checkers :checkers
syntax ; tasing you for every semicolon you forget syntax ; tasing you for every semicolon you forget

View File

@@ -43,11 +43,14 @@
tmux tmux
kitty kitty
nodePackages.pyright nodePackages.pyright
emacs28NativeComp
coreutils coreutils
zstd zstd
]; ];
programs.direnv.enable = true; programs.direnv.enable = true;
programs.direnv.nix-direnv.enable = true; programs.direnv.nix-direnv.enable = true;
programs.emacs.enable = true;
programs.emacs.package = pkgs.emacs28NativeComp;
programs.emacs.extraPackages = epkgs: [ epkgs.vterm ];
} }