nix-community.nixvim/tests/test-sources/plugins/by-name/zotcite/default.nix
2025-01-28 23:16:30 +00:00

41 lines
671 B
Nix

{
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"
];
};
};
};
}