12 lines
324 B
Lua
12 lines
324 B
Lua
--- @type LazyPluginSpec
|
|
return {
|
|
"razak17/tailwind-fold.nvim",
|
|
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
|
ft = { "html", "svelte", "astro", "vue", "typescriptreact", "php", "blade" },
|
|
config = function()
|
|
require("tailwind-fold").setup({
|
|
symbol = "",
|
|
})
|
|
end,
|
|
}
|