Compare commits

...

2 Commits

Author SHA1 Message Date
iGor milhit a50b7b4b55
plugins: improve slightly the treesitter config
- Adds an empty module options to avoid warning.
- Indents the disabled language list, in order to add some easily.

Co-Authored-by: iGor milhit <igor@milhit.ch>
2024-10-03 08:05:10 +02:00
iGor milhit fd295f92e4
plugins: add zotcite and cmp-zotcite plugins
- Adds zotcite plugins (with completion).

Co-Authored-by: iGor milhit <igor@milhit.ch>
2024-08-29 07:46:28 +02:00
3 changed files with 32 additions and 3 deletions

View File

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

View File

@ -107,6 +107,7 @@ return {
}, },
{ name = "path" }, { name = "path" },
{ name = "emoji" }, { name = "emoji" },
{ name = "cmp_zotcite"} -- zotcite (plugins/markdown/zotcite.lua)
}), }),
formatting = { formatting = {

View File

@ -45,7 +45,9 @@ return {
-- Enable color syntax -- Enable color syntax
highlight = { highlight = {
enable = true, enable = true,
disable = { "markdown" }, disable = {
"markdown"
},
}, },
-- Enable better indentation management -- Enable better indentation management
indent = { enable = true }, indent = { enable = true },
@ -64,6 +66,9 @@ return {
"yaml", "yaml",
}, },
-- Empty option, to avoid warning
modules = {},
-- List of parsers to ignore installing -- List of parsers to ignore installing
ignore_install = { ignore_install = {
"markdown", "markdown",
@ -133,5 +138,3 @@ return {
}) })
end, end,
} }