diff --git a/nvim/lua/kanopo/plugins/neorg.lua b/nvim/lua/kanopo/plugins/neorg.lua deleted file mode 100644 index 93d139d..0000000 --- a/nvim/lua/kanopo/plugins/neorg.lua +++ /dev/null @@ -1,40 +0,0 @@ -return { - "nvim-neorg/neorg", - lazy = true, -- Enable lazy loading - version = "*", -- Pin Neorg to the latest stable release - cmd = "Neorg", -- Load when the Neorg command is used - ft = "norg", -- Load when a .norg file is opened - build = ":Neorg sync-parsers", - config = function() - require("neorg").setup({ - load = { - ["core.defaults"] = {}, - ["core.dirman"] = { - config = { - workspaces = { - default = "~/Documents/notes", - }, - default_workspace = "default", - index = "index.norg", - } - }, - ["core.journal"] = { - config = { - workspace = "default" - }, - }, - ["core.concealer"] = { - config = { - icon_preset = "varied", - }, - }, - -- ["core.export"] = { - -- config = {} - -- }, - -- ["core.export.markdown"] = { - -- config = {} - -- } - } - }) - end, -}