24 lines
443 B
Lua
24 lines
443 B
Lua
-- Install and configure zotcite
|
|
-- https://github.com/jalvesaq/zotcite
|
|
|
|
return {
|
|
"jalvesaq/zotcite",
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
"jalvesaq/cmp-zotcite",
|
|
},
|
|
config = function ()
|
|
require("zotcite").setup({
|
|
-- waiting for zotcite options
|
|
})
|
|
require("cmp_zotcite").setup({
|
|
filetypes = {
|
|
"pandoc",
|
|
"markdown",
|
|
"rmd",
|
|
"quarto",
|
|
}
|
|
})
|
|
end
|
|
}
|