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