fixed the conceallevel config, now uses vim option

also enabled the summary module, though the journal files fuck with it
sadly
This commit is contained in:
Gabriella Bere 2025-09-27 20:31:50 +01:00
parent 02ee99e5ef
commit 5c3ae818bb

View file

@ -43,6 +43,9 @@
emoji.enable = true; emoji.enable = true;
}; };
}; };
options = {
conceallevel = 3;
};
notes.neorg = { notes.neorg = {
enable = true; enable = true;
treesitter = { treesitter = {
@ -51,9 +54,6 @@
}; };
setupOpts.load = { setupOpts.load = {
"core.defaults".enable = true; "core.defaults".enable = true;
"core.concealer".config = {
conceallevel = 3;
};
"core.dirman".config = { "core.dirman".config = {
workspaces = { workspaces = {
second-brain = "~/second-brain"; second-brain = "~/second-brain";
@ -64,6 +64,10 @@
"core.journal".config = { "core.journal".config = {
workspace = "second-brain"; workspace = "second-brain";
}; };
"core.summary".enable = true;
"core.summary".config = {
strategy = "by_path";
};
}; };
}; };
}; };