Add nvim-orgmode, neorg
Lock LazyVim version because of neorg issues
This commit is contained in:
26
lua/plugins/neorg.lua
Normal file
26
lua/plugins/neorg.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user