mirror of
https://github.com/srid/nixos-config.git
synced 2026-02-26 23:15:14 +08:00
wip emacs vterm
This commit is contained in:
parent
82725b25d6
commit
7ce410ea63
2 changed files with 20 additions and 0 deletions
|
|
@ -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
19
home/emacs.nix
Normal 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 "$@"
|
||||
'';
|
||||
})
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue