plugins/zotcite: init

This commit is contained in:
Gaetan Lepage 2025-01-28 18:17:05 +01:00 committed by nix-infra-bot
parent b6c0cfab81
commit eeafe2a715
2 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{
empty = {
plugins.zotcite.enable = true;
};
defaults = {
plugins.zotcite = {
enable = true;
settings = {
hl_cite_key = true;
conceallevel = 2;
wait_attachment = false;
open_in_zotero = false;
filetypes = [
"markdown"
"pandoc"
"rmd"
"quarto"
"vimwiki"
];
};
};
};
example = {
plugins.zotcite = {
enable = true;
settings = {
hl_cite_key = false;
wait_attachment = true;
open_in_zotero = true;
filetypes = [
"markdown"
"quarto"
];
};
};
};
}