16 lines
564 B
Lua
16 lines
564 B
Lua
return {
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
tailwindcss = {
|
|
-- exclude a filetype from the default_config
|
|
-- filetypes_exclude = { "markdown", "javascript", "typescript" },
|
|
-- add additional filetypes to the default_config
|
|
-- filetypes_include = {},
|
|
-- to fully override the default_config, change the below
|
|
filetypes = { "javascriptreact", "typescriptreact", "html", "css", "scss", "templ" },
|
|
},
|
|
},
|
|
},
|
|
}
|