nix-community.nixvim/tests/test-sources/plugins/languages/orgmode.nix
2024-09-01 15:51:46 -05:00

26 lines
429 B
Nix

{
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";
};
};
};
}