feat: emacs changes

This commit is contained in:
Kat Inskip 2025-12-13 07:20:48 -08:00
parent 8fc60d9633
commit 673315ac65
3 changed files with 17 additions and 13 deletions

View file

@ -1,8 +1,8 @@
{ config, ... }: {
{ config, pkgs, ... }: {
programs.doom-emacs = {
enable = true;
doomDir = ./doom.d;
doomLocalDir = "${config.home.homeDirectory}/.local/share/nix-doom";
extraPackages = epkgs: [ epkgs.treesit-grammars.with-all-grammars ];
extraPackages = epkgs: [ epkgs.treesit-grammars.with-all-grammars epkgs.rainbow-delimiters pkgs.ispell ];
};
}