14 lines
262 B
Nix
14 lines
262 B
Nix
{
|
|
programs.nixvim.plugins = {
|
|
neorg = {
|
|
enable = true;
|
|
modules = {
|
|
"core.defaults" = { __empty = null; };
|
|
"core.dirman" = {
|
|
config = { workspaces = { home = "~/nextcloud/neorg"; }; };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|