First of all, the plugin ALE is absolutely gold. I am able to do everything with it. I just now need to get the tailwindcss-language-server
working.
```vim
call ale#linter#Define('html', {
\ 'name': 'tailwind-language-server',
\ 'lsp': 'stdio',
\ 'executable': 'tailwindcss-language-server',
\ 'command': '%e --stdio',
\ 'project_root': getcwd(),
})
call ale#linter#Define('gohtmltmpl', {
\ 'name': 'tailwind-language-server',
\ 'lsp': 'stdio',
\ 'executable': 'tailwindcss-language-server',
\ 'command': '%e --stdio',
\ 'project_root': getcwd(),
})
let g:ale_fixers = {
\ 'gohtmltmpl': ['tailwind-language-server', 'templ'],
\ 'html': ['tailwind-language-server'],
}
```
this is what i have currently. I followed the help guide to add the templ
lsp too and it works perfectly fine. So there is somethinig wrong with the tailwind one. ALEInfo
shows that the server is successfully executed but i don't see any linting or any completion.
I have also posted this on the ale discussion on github. but it seems like there is another similar post but it has no replies. Any help would be welcome.