nvim_config/plugins/vim-astro.lua

11 lines
220 B
Lua
Raw Normal View History

2023-07-11 13:21:37 +00:00
return {
{
"wuelnerdotexe/vim-astro",
ft = "astro",
init = function()
-- Astro configuration variables.
vim.g.astro_typescript = "enable"
vim.g.astro_stylus = "disable"
end,
},
}