From 140530c36191e726f997f512dcbe859905fa6365 Mon Sep 17 00:00:00 2001 From: Taken Date: Sun, 24 Nov 2024 16:12:57 +0100 Subject: [PATCH] Added tailwind fold --- lua/taken/plugins/lsp/tailwind-fold.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lua/taken/plugins/lsp/tailwind-fold.lua diff --git a/lua/taken/plugins/lsp/tailwind-fold.lua b/lua/taken/plugins/lsp/tailwind-fold.lua new file mode 100644 index 0000000..7be9f28 --- /dev/null +++ b/lua/taken/plugins/lsp/tailwind-fold.lua @@ -0,0 +1,11 @@ +--- @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, +}