nix-community.nixvim/tests/test-sources/plugins/by-name/orgmode/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
429 B
Nix
Raw Normal View History

2024-08-29 23:08:07 +03:00
{
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";
};
};
};
}