From a8d37c3fcd0441a311ca9addee3d103e9cb878c8 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Fri, 5 Jul 2024 08:49:18 +0200 Subject: [PATCH] Update --- home/programs/nvim/plugins/neorg.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 home/programs/nvim/plugins/neorg.nix 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"; }; }; + }; + }; + }; + }; +}