mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
22 lines
421 B
Lua
22 lines
421 B
Lua
return {
|
|
recommended = function()
|
|
return LazyVim.extras.wants({
|
|
ft = "quarto",
|
|
root = {
|
|
"_quarto.yml",
|
|
},
|
|
})
|
|
end,
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = { ensure_installed = { "markdown", "markdown_inline" } },
|
|
},
|
|
{
|
|
"quarto-dev/quarto-nvim",
|
|
dependencies = {
|
|
"jmbuhr/otter.nvim",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
},
|
|
opts = {},
|
|
},
|
|
}
|