mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-02 21:34:33 +02:00
plugins/nvim-orgmode: init
This commit is contained in:
parent
f3362d2e9d
commit
2b30ee8703
3 changed files with 57 additions and 0 deletions
26
tests/test-sources/plugins/languages/orgmode.nix
Normal file
26
tests/test-sources/plugins/languages/orgmode.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue