Add back emacs

This commit is contained in:
Dave Gallant
2021-12-05 01:41:43 -05:00
parent 70a2175a18
commit 7f3ce1b7db
2 changed files with 123 additions and 0 deletions

View File

@@ -309,6 +309,39 @@ in
enableZshIntegration = true;
};
emacs = {
enable = true;
extraPackages = epkgs:
(with epkgs; [
all-the-icons
centaur-tabs
doom-modeline
doom-themes
evil
evil-collection
evil-commentary
evil-matchit
evil-numbers
evil-surround
evil-visualstar
flycheck
highlight-parentheses
htmlize
hydra
lsp-mode
magit
markdown-mode
markdown-toc
org-bullets
org-superstar
ox-pandoc
ripgrep
spinner
treemacs
xclip
]);
};
neovim = {
enable = true;
viAlias = true;
@@ -359,5 +392,6 @@ in
home.file.".config/nvim/lua".source = ./nvim/lua;
home.file.".config/srv".source = ./srv;
home.file.".emacs.d/init.el".source = ./init.el;
}