mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-09 16:54:36 +02:00
plugins/zotcite: init
This commit is contained in:
parent
b6c0cfab81
commit
eeafe2a715
2 changed files with 100 additions and 0 deletions
41
tests/test-sources/plugins/by-name/zotcite/default.nix
Normal file
41
tests/test-sources/plugins/by-name/zotcite/default.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue