This commit is contained in:
itamar 2026-04-10 22:42:37 +03:00
parent 7b8005c867
commit 4731e545bb
No known key found for this signature in database
GPG key ID: D8277CDCD4F544E9
44 changed files with 742 additions and 1233 deletions

41
navi/navi/editors.nix Normal file
View file

@ -0,0 +1,41 @@
{ pkgs, inputs, ... }:
{
programs.neovim = {
enable = true;
};
home.sessionVariables.EDITOR = "nvim";
home.file = {
".emacs.d" = {
text = "hii";
recursive = true;
};
};
programs.emacs.enable = true;
programs.emacs.extraPackages = (
epkgs: (with epkgs; [
better-defaults
material-theme
org
org-bullets
org-journal
org-roam
org-super-agenda
helm-org-rifle
afternoon-theme
workgroups2
treemacs
projectile
slime
yaml
yaml-mode
markdown-mode
ox-pandoc
use-package
notmuch
])
);
}