diff options
-rw-r--r-- | hm/soispha/conf/nvim/plugins/neorg/default.nix | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/hm/soispha/conf/nvim/plugins/neorg/default.nix b/hm/soispha/conf/nvim/plugins/neorg/default.nix index 74ab332d..c05570df 100644 --- a/hm/soispha/conf/nvim/plugins/neorg/default.nix +++ b/hm/soispha/conf/nvim/plugins/neorg/default.nix @@ -7,7 +7,7 @@ "core.defaults" = { __empty = null; }; - "core.metagen".config = { + "core.esupports.metagen".config = { type = "auto"; }; "core.journal".config = { @@ -29,15 +29,21 @@ "core.completion".config = { engine = "nvim-cmp"; }; - "core.concealer".config = {}; + "core.concealer".config = { + __empty = null; + }; "core.dirman".config = { workspaces = { general = "~/notes/general"; journal = "~/notes/journal"; }; }; - "core.export".config = {}; - "core.ui.calendar".config = {}; + "core.export".config = { + __empty = null; + }; + "core.ui.calendar".config = { + __empty = null; + }; }; }; } |