nixos/home/programs/nvim/plugins/neorg.nix
2024-07-05 08:49:18 +02:00

14 lines
262 B
Nix

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