nix-config/modules/home/emacs/default.nix

33 lines
590 B
Nix
Raw Normal View History

2024-08-12 19:53:56 -04:00
{...}: {
programs.emacs = {
enable = true;
extraPackages = epkgs:
with epkgs; [
catppuccin-theme
codeium
corfu
dashboard
direnv
doom-modeline
evil
evil-leader
flycheck
ligature
lua-mode
nix-mode
ns-auto-titlebar
sideline
sideline-flycheck
tree-sitter-langs
treemacs
treemacs-evil
treesit-auto
treesit-grammars.with-all-grammars
vterm
];
extraConfig = builtins.readFile ./config/init.el;
};
}