Add nvim-orgmode, neorg

Lock LazyVim version because of neorg issues
This commit is contained in:
Emma Turner
2026-01-28 15:38:34 -07:00
parent dc18881a6d
commit 81bf51764c
7 changed files with 145 additions and 0 deletions

26
lua/plugins/neorg.lua Normal file
View File

@@ -0,0 +1,26 @@
return {
"nvim-neorg/neorg",
enabled = true,
lazy = false,
version = "*",
config = function()
--vim.g.maplocalleader = " "
require("neorg").setup({
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
notes = "C:\\Users\\EmmaTurner\\OneDrive - Exponential Technology Group, Inc\\Documents\\Notes",
},
default_workspace = "notes",
},
},
},
})
vim.wo.foldlevel = 99
vim.wo.conceallevel = 2
end,
}