nvim/lua/plugins/tailwind.lua

16 lines
490 B
Lua
Raw Normal View History

2024-06-17 15:22:39 +07:00
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 = {}
},
},
},
}