refactor(nvim): update neorg settings to be compliant with neorg v3

This commit is contained in:
Price Hiller 2023-04-24 00:52:29 -05:00
parent 3237c7e4d3
commit 2fd8515a7f
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -3,7 +3,7 @@ local neorg = require("neorg")
neorg.setup({ neorg.setup({
load = { load = {
["core.defaults"] = {}, ["core.defaults"] = {},
["core.norg.concealer"] = { ["core.concealer"] = {
config = { config = {
dim_code_blocks = { dim_code_blocks = {
enabled = true, enabled = true,
@ -13,7 +13,7 @@ neorg.setup({
icon_preset = "diamond", icon_preset = "diamond",
}, },
}, },
["core.norg.esupports.metagen"] = { ["core.esupports.metagen"] = {
config = { config = {
type = "auto", type = "auto",
}, },
@ -21,7 +21,7 @@ neorg.setup({
["core.integrations.nvim-cmp"] = { ["core.integrations.nvim-cmp"] = {
config = {}, config = {},
}, },
["core.norg.completion"] = { ["core.completion"] = {
config = { config = {
engine = "nvim-cmp", engine = "nvim-cmp",
}, },
@ -32,7 +32,7 @@ neorg.setup({
-- norg_leader = "-" -- norg_leader = "-"
}, },
}, },
["core.norg.dirman"] = { ["core.dirman"] = {
config = { config = {
workspaces = { workspaces = {
default = "~/.notes", -- Format: <name_of_workspace> = <path_to_workspace_root> default = "~/.notes", -- Format: <name_of_workspace> = <path_to_workspace_root>
@ -43,6 +43,6 @@ neorg.setup({
}, },
}, },
["core.integrations.telescope"] = {}, ["core.integrations.telescope"] = {},
["core.norg.qol.toc"] = {}, ["core.qol.toc"] = {},
}, },
}) })