mass update

This commit is contained in:
Dario48 2025-10-08 21:24:37 +02:00
commit c613a6d0e3
21 changed files with 361 additions and 128 deletions

View file

@ -1,6 +1,6 @@
return {
"nvim-neorg/neorg",
lazy = true, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
dependencies = {
{
"juniorsundar/neorg-extras",
@ -8,6 +8,7 @@ return {
},
"nvim-telescope/telescope.nvim", -- Required for the Neorg-Roam features
"nvim-lua/plenary.nvim", -- Required as part of Telescope installation
"nvim-treesitter/nvim-treesitter",
},
opts = {
load = {
@ -15,23 +16,28 @@ return {
config = {
metadata_fold = true, -- If want @data property ... @end to fold
code_fold = true, -- If want @code ... @end to fold
}
},
},
["core.defaults"] = {},
["core.concealer"] = { config = { folds = false } },
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
school = "~/Documents/school",
notes = "~/Documents/notes",
uni = "~/Documents/uni",
},
default_workspace = "notes",
},
},
["core.completion"] = { config = { engine = "nvim-cmp" } },
["core.integrations.treesitter"] = {},
["core.clipboard.code-blocks"] = {},
["core.esupports.indent"] = {},
},
},
ft = "norg",
cmd = "Neorg",
config = true,
version = "*",
}