34 lines
699 B
Lua
34 lines
699 B
Lua
return {
|
|
"nvim-neorg/neorg",
|
|
lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
|
|
version = "*", -- Pin Neorg to the latest stable release
|
|
config = function()
|
|
require("neorg").setup({
|
|
load = {
|
|
["core.defaults"] = {},
|
|
["core.concealer"] = {
|
|
config = {
|
|
icons = {
|
|
code_block = {
|
|
conceal = true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
["core.dirman"] = {
|
|
config = {
|
|
workspaces = {
|
|
notes = "~/Documents/notes/neorg/",
|
|
},
|
|
default_workspace = "notes",
|
|
},
|
|
},
|
|
["core.itero"] = {},
|
|
},
|
|
})
|
|
vim.wo.foldlevel = 99
|
|
vim.wo.conceallevel = 2
|
|
end,
|
|
}
|
|
|
|
-- vim: ts=2 sts=2 sw=2
|