Compare commits

...

1 Commits

Author SHA1 Message Date
iGor milhit 7a8d0c78c3
plugins: add zotcite and cmp-zotcite plugins
- Adds zotcite plugins (with completion).

Co-Authored-by: iGor milhit <igor@milhit.ch>
2024-08-29 07:13:45 +02:00
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,22 @@
-- Install and configure zotcite
-- https://github.com/jalvesaq/zotcite
return {
"jalvesaq/zotcite",
dependencies = {
"nvim-treesitter/nvim-treesitter",
},
config = function ()
require("zotcite").setup({
-- waiting for zotcite options
})
require("cmp_zotcite").setup({
filetypes = {
"pandoc",
"markdown",
"rmd",
"quarto",
}
})
end
}

View File

@ -28,6 +28,9 @@ return {
"hrsh7th/cmp-emoji", "hrsh7th/cmp-emoji",
-- vs-code pictrograms -- vs-code pictrograms
"onsails/lspkind.nvim", "onsails/lspkind.nvim",
-- Adds completion for zotcite
"jalvesaq/cmp-zotcite",
}, },
-- Configure nvim-cmp -- Configure nvim-cmp
@ -107,6 +110,7 @@ return {
}, },
{ name = "path" }, { name = "path" },
{ name = "emoji" }, { name = "emoji" },
{ name = "cmp_zotcite"}
}), }),
formatting = { formatting = {