Removing neorg

This commit is contained in:
2024-03-30 11:15:59 +01:00
parent b7e9d9fa45
commit 8cf34150f8
2 changed files with 1 additions and 26 deletions

View File

@@ -48,7 +48,7 @@ return {
dashboard.button("f", "" .. "Find files", ":Telescope find_files <CR>"),
dashboard.button("p", "" .. "Select project", ":Telescope neovim-project history <CR>"),
dashboard.button("t", "" .. "Change theme", ":ThemeSwitcher <CR>"),
dashboard.button("n", " " .. "Neorg", ":Neorg workspace main <CR>"),
dashboard.button("m", " " .. "Mason", ":Mason <CR>"),
dashboard.button("l", "󰚰 " .. "LazyUI", ":Lazy <CR>"),
}
for _, button in ipairs(dashboard.section.buttons.val) do

View File

@@ -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,
}