From 8cf34150f83630e978ddcb222db312cda768fb6e Mon Sep 17 00:00:00 2001 From: Taken Date: Sat, 30 Mar 2024 11:15:59 +0100 Subject: [PATCH] Removing neorg --- lua/taken/plugins/alpha.lua | 2 +- lua/taken/plugins/neorg.lua | 25 ------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 lua/taken/plugins/neorg.lua diff --git a/lua/taken/plugins/alpha.lua b/lua/taken/plugins/alpha.lua index ad8c71b..0b7c7f0 100644 --- a/lua/taken/plugins/alpha.lua +++ b/lua/taken/plugins/alpha.lua @@ -48,7 +48,7 @@ return { dashboard.button("f", " " .. "Find files", ":Telescope find_files "), dashboard.button("p", " " .. "Select project", ":Telescope neovim-project history "), dashboard.button("t", " " .. "Change theme", ":ThemeSwitcher "), - dashboard.button("n", " " .. "Neorg", ":Neorg workspace main "), + dashboard.button("m", " " .. "Mason", ":Mason "), dashboard.button("l", "󰚰 " .. "LazyUI", ":Lazy "), } for _, button in ipairs(dashboard.section.buttons.val) do diff --git a/lua/taken/plugins/neorg.lua b/lua/taken/plugins/neorg.lua deleted file mode 100644 index 048fb58..0000000 --- a/lua/taken/plugins/neorg.lua +++ /dev/null @@ -1,25 +0,0 @@ ---- @type LazyPluginSpec -return { - "nvim-neorg/neorg", - build = ":Neorg sync-parsers", - dependencies = "nvim-lua/plenary.nvim", - cmd = "Neorg", - ft = "norg", - config = function() - local neorg = require("neorg") - - neorg.setup({ - load = { - ["core.defaults"] = {}, - ["core.concealer"] = {}, - ["core.dirman"] = { - config = { - workspaces = { - main = "~/neorg/main", - }, - }, - }, - }, - }) - end, -}