๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

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

extract variable

+9 -8
+9 -8
.config/nvim/lua/plugins/conform.lua
··· 1 + local rustywind = { 2 + prepend_args = { 3 + "--custom-regex", 4 + "class\\([\\s\\S]*?[\\\"\\']([\\s\\S]*?)[\\\"\\'][\\s\\S]*?\\)", 5 + }, 6 + } 7 + 1 8 return { 2 9 "stevearc/conform.nvim", 3 10 opts = { ··· 7 14 markdown = { "rumdl" }, 8 15 sql = { "sqruff" }, 9 16 }, 10 - formatters = { 11 - rustywind = { 12 - prepend_args = { 13 - "--custom-regex", 14 - "class\\([\\s\\S]*?[\\\"\\']([\\s\\S]*?)[\\\"\\'][\\s\\S]*?\\)", 15 - }, 16 - }, 17 - }, 17 + 18 + formatters = { rustywind = rustywind }, 18 19 }, 19 20 }