plugins/nvim-orgmode: init

This commit is contained in:
refaelsh 2024-08-29 23:08:07 +03:00 committed by Austin Horstman
parent f3362d2e9d
commit 2b30ee8703
No known key found for this signature in database
3 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{
empty = {
plugins.orgmode.enable = true;
};
default = {
plugins.orgmode = {
enable = true;
settings = {
org_agenda_files = "";
org_default_notes_file = "";
};
};
};
example = {
plugins.orgmode = {
enable = true;
settings = {
org_agenda_files = "~/orgfiles/**/*";
org_default_notes_file = "~/orgfiles/refile.org";
};
};
};
}