From 4ec5a2562a9eac68d38852957bdce47bc5732f98 Mon Sep 17 00:00:00 2001 From: Dmitri Date: Sat, 3 May 2025 10:45:25 +0200 Subject: [PATCH] aa --- nvim/lua/kanopo/plugins/neorg.lua | 40 ------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 nvim/lua/kanopo/plugins/neorg.lua 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, -}