9 lines
256 B
Lua
9 lines
256 B
Lua
return {
|
|
dir = "~/Development/langs/dragon/extensions/vim-dragon",
|
|
ft = "dragon",
|
|
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
|
config = function()
|
|
-- Parser is auto-registered; just install it:
|
|
vim.cmd("TSInstall dragon")
|
|
end,
|
|
}
|