You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
580 B
Lua
29 lines
580 B
Lua
return {
|
|
{
|
|
"nvim-neorg/neorg",
|
|
version = "*",
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
'nvim-treesitter/nvim-treesitter',
|
|
},
|
|
opts = {
|
|
load = {
|
|
["core.defaults"] = {},
|
|
["core.concealer"] = {},
|
|
["core.dirman"] = {
|
|
config = {
|
|
workspaces = {
|
|
general = "$XDG_DOCUMENTS_DIR/neorg/general",
|
|
},
|
|
default_workspace = "general",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
config = function()
|
|
vim.wo.foldlevel = 99
|
|
vim.wo.conceallevel = 2
|
|
end,
|
|
}
|
|
}
|