From 05953bbebedffdee25653320476bcc060aeab5ef Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 23 Jul 2024 18:05:52 +0900 Subject: [PATCH] chore: add zed ide support --- .zed/settings.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .zed/settings.json diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..00e666c --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,14 @@ +{ + "lsp": { + "tailwindcss-language-server": { + "settings": { + "experimental": { + "classRegex": [ + ["vcn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], + ["[cC]olors\\s*\\=\\s*{([^]*(?=}))}", "[\"'`]([^\"'`]*).*?[\"'`]"] + ] + } + } + } + } +}