push
This commit is contained in:
parent
7b8005c867
commit
4731e545bb
44 changed files with 742 additions and 1233 deletions
41
navi/navi/editors.nix
Normal file
41
navi/navi/editors.nix
Normal 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
|
||||
])
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue