Moved configs to seperate files

This commit is contained in:
angryluck 2024-05-28 21:08:24 +02:00
parent fdb565ce87
commit 3b96ad1b57
26 changed files with 578 additions and 229 deletions

View file

@ -0,0 +1,29 @@
return {
-- "nvim-neorg/neorg",
-- dependencies = { "nvim-lua/plenary.nvim" },
-- build = ":Neorg sync-parsers",
-- -- tag = "*",
-- lazy = true, -- enable lazy load
-- ft = "norg", -- lazy load on file type
-- cmd = "Neorg", -- lazy load on command
-- config = function()
-- require("neorg").setup {
-- load = {
-- ["core.defaults"] = {}, -- Loads default behaviour
-- ["core.concealer"] = {}, -- Adds pretty icons to your documents
-- ["core.dirman"] = { -- Manages Neorg workspaces
-- config = {
-- workspaces = {
-- notes = "~/documents/notes",
-- },
-- },
-- },
-- ["core.completion"] = {
-- config = {
-- engine = "nvim-cmp",
-- }
-- }
-- },
-- }
-- end,
}