From 935bfde0fd3a08381ea18530552ad7b1df58d3ac Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Wed, 17 Jan 2024 23:22:23 +0000 Subject: [PATCH] feat: initial neorg implementation --- init.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/init.lua b/init.lua index 26bc72e..35fa22b 100644 --- a/init.lua +++ b/init.lua @@ -58,6 +58,26 @@ require("lazy").setup({ 'goolord/alpha-nvim', 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