wip emacs vterm

This commit is contained in:
Sridhar Ratnakumar 2022-10-07 22:00:20 -04:00
parent 82725b25d6
commit 7ce410ea63
2 changed files with 20 additions and 0 deletions

View file

@ -146,6 +146,7 @@
./home/neovim.nix
./home/email.nix
./home/terminal.nix
./home/emacs.nix
./home/direnv.nix
./home/starship.nix
];

19
home/emacs.nix Normal file
View file

@ -0,0 +1,19 @@
{ pkgs, ... }:
{
# https://docs.doomemacs.org/latest/modules/term/vterm/
#
# Sadly, this doesn't work yet. This is the blocker:
# https://github.com/akermu/emacs-libvterm/issues/333#issuecomment-1272195411
home.packages = with pkgs; [
cmake
libvterm-neovim
(pkgs.writeShellApplication {
name = "glibtool";
runtimeInputs = [ libtool ];
text = ''
libtool "$@"
'';
})
];
}