We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Was anyone able to set it up? I could use some help.
The text was updated successfully, but these errors were encountered:
This is assuming you're using the latest version of the language server
Note: If you are using mason.nvim you'll need to install mason-lspconfig.nvim and follow their setup instructions.
Here is an example of what I have currently:
local capabilities = vim.lsp.protocol.make_client_capabilities() local lspconfig = require("lspconfig") -- ... other stuff -- npm install -g @tailwindcss/language-server lspconfig.tailwindcss.setup({ capabilities = capabilities, filetypes = { "go", }, settings = { tailwindCSS = { includeLanguages = { go = "html", }, experimental = { classRegex = { {"Class(?:es)?[({]([^)}]*)[)}]", "[\"`]([^\"`]*)[\"`]"}, }, }, }, }, })
For those of you that want to know where I found this information, the documentation mentions this config in the Tailwindcss IntelliSense section which leads to the TailwindCSS auto-complete in your IDE section which is part of the gomponents-starter-kit repository.
If you're still not able to get it working post your config here and I'll take a look when I have a free moment :)
Sorry, something went wrong.
No branches or pull requests
Was anyone able to set it up?
I could use some help.
The text was updated successfully, but these errors were encountered: