diff --git a/home/programs/nvim/plugins/neorg.nix b/home/programs/nvim/plugins/neorg.nix new file mode 100644 index 0000000..1af00a0 --- /dev/null +++ b/home/programs/nvim/plugins/neorg.nix @@ -0,0 +1,13 @@ +{ + programs.nixvim.plugins = { + neorg = { + enable = true; + modules = { + "core.defaults" = { __empty = null; }; + "core.dirman" = { + config = { workspaces = { home = "~/nextcloud/neorg"; }; }; + }; + }; + }; + }; +}