This commit is contained in:
sharings 2025-07-26 12:43:01 +00:00
commit 1e2ca5a6fc
71 changed files with 3330 additions and 0 deletions

30
config/plugins/image.nix Normal file
View file

@ -0,0 +1,30 @@
{
pkgs,
config,
lib,
...
}:
{
plugins = {
# For "core.latex.renderer" to work
image = {
enable = lib.mkIf (builtins.hasAttr "core.latex.renderer" config.plugins.neorg.settings.load) true;
settings.integrations = {
backend = "ueberzug";
neorg = {
enabled = true;
clearInInsertMode = true;
filetypes = [ "norg" ];
};
markdown = {
enabled = true;
clearInInsertMode = true;
filetypes = [
"markdown"
"vimwiki"
];
};
};
};
};
}