19 lines
445 B
Lua
19 lines
445 B
Lua
|
-- plugins/quarto.lua.
|
||
|
-- This plugin integrates or configure tools to work with quarto.
|
||
|
-- https://quarto.org/docs/tools/neovim.html
|
||
|
-- https://github.com/quarto-dev/quarto-neovim
|
||
|
-- https://github.com/jmbuhr/quarto-nvim-kickstarter
|
||
|
|
||
|
return {
|
||
|
{
|
||
|
"quarto-dev/quarto-nvim",
|
||
|
filetype = { 'quarto' },
|
||
|
dev = false,
|
||
|
opts = {},
|
||
|
dependencies = {
|
||
|
"jmbuhr/otter.nvim",
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
},
|
||
|
},
|
||
|
}
|