mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
26 lines
429 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|