plugin revamp

This commit is contained in:
NotAI 2024-12-08 14:20:27 -05:00
parent 70caae6dcb
commit 6fe9d1b656
11 changed files with 224 additions and 59 deletions

View file

@ -0,0 +1,28 @@
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,
}
}