feat: initial neorg implementation

This commit is contained in:
Muhammad Nauman Raza 2024-01-17 23:22:23 +00:00
parent 6cff33c93d
commit 935bfde0fd
Signed by: devraza
GPG key ID: 91EAD6081011574B

View file

@ -58,6 +58,26 @@ require("lazy").setup({
'goolord/alpha-nvim', 'goolord/alpha-nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' }, dependencies = { 'nvim-tree/nvim-web-devicons' },
}; };
{
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
require("neorg").setup {
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
notes = "~/NAS/Neorg/Notes",
},
},
},
},
}
end,
},
}) })
-- Imports from files -- Imports from files