i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add cn and modifiersClassNames to tailwindcss

+4
+4
nvim/.config/nvim/lua/plugins.lua
··· 447 447 local tailwindcss_opts = { 448 448 settings = { 449 449 tailwindCSS = { 450 + classAttributes = { 451 + "modifiersClassNames", 452 + }, 450 453 experimental = { 451 454 classRegex = { 452 455 { "cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]" }, 453 456 { "cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)" }, 457 + { "cn\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)" }, 454 458 }, 455 459 }, 456 460 },