27 lines
387 B
Nix
Executable file
27 lines
387 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;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|