From 2fd8515a7fd1414267c534f4ba72369f1354d27f Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 24 Apr 2023 00:52:29 -0500 Subject: [PATCH] refactor(nvim): update neorg settings to be compliant with neorg v3 --- dots/.config/nvim/lua/plugins/configs/_neorg.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dots/.config/nvim/lua/plugins/configs/_neorg.lua b/dots/.config/nvim/lua/plugins/configs/_neorg.lua index 5e973a35..a0046b33 100755 --- a/dots/.config/nvim/lua/plugins/configs/_neorg.lua +++ b/dots/.config/nvim/lua/plugins/configs/_neorg.lua @@ -3,7 +3,7 @@ local neorg = require("neorg") neorg.setup({ load = { ["core.defaults"] = {}, - ["core.norg.concealer"] = { + ["core.concealer"] = { config = { dim_code_blocks = { enabled = true, @@ -13,7 +13,7 @@ neorg.setup({ icon_preset = "diamond", }, }, - ["core.norg.esupports.metagen"] = { + ["core.esupports.metagen"] = { config = { type = "auto", }, @@ -21,7 +21,7 @@ neorg.setup({ ["core.integrations.nvim-cmp"] = { config = {}, }, - ["core.norg.completion"] = { + ["core.completion"] = { config = { engine = "nvim-cmp", }, @@ -32,7 +32,7 @@ neorg.setup({ -- norg_leader = "-" }, }, - ["core.norg.dirman"] = { + ["core.dirman"] = { config = { workspaces = { default = "~/.notes", -- Format: = @@ -43,6 +43,6 @@ neorg.setup({ }, }, ["core.integrations.telescope"] = {}, - ["core.norg.qol.toc"] = {}, + ["core.qol.toc"] = {}, }, })