Fix Tailwind CSS completions
Whether the file extension is `.twig` or `.html.twig`, the filetype in Neovim is `twig`, so this commit simplifies and fixes the configuration for Tailwind CSS so that it works in files it previously wasn't completing in.
This commit is contained in:
parent
2e6e3ce153
commit
50bac18457
|
@ -99,7 +99,7 @@ local servers = {
|
||||||
marksman = {},
|
marksman = {},
|
||||||
nil_ls = {},
|
nil_ls = {},
|
||||||
tailwindcss = {
|
tailwindcss = {
|
||||||
filetypes = { "html", "html.twig", "javascript", "typescript", "vue" },
|
filetypes = { "html", "javascript", "twig", "typescript", "vue" },
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
init_options = {
|
init_options = {
|
||||||
|
|
Reference in a new issue