25 lines
384 B
Nix
Executable file
25 lines
384 B
Nix
Executable file
{...}: {
|
|
programs.nixvim.plugins.neorg = {
|
|
enable = true;
|
|
# lazyLoading = true;
|
|
|
|
modules = {
|
|
"core.defaults" = {
|
|
__empty = null;
|
|
};
|
|
|
|
"core.dirman" = {
|
|
config = {
|
|
workspaces = {
|
|
notes = "~/Documents/notes";
|
|
};
|
|
};
|
|
};
|
|
|
|
"core.concealer" = {
|
|
__empty = null;
|
|
};
|
|
};
|
|
};
|
|
}
|