mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-13 19:04:40 +02:00
9 lines
275 B
Lua
9 lines
275 B
Lua
local lspconfig = require 'lspconfig'
|
|
|
|
lspconfig.tailwindcss.setup {
|
|
cmd = {
|
|
"node", DATA_PATH .. "/lspinstall/tailwindcss/tailwindcss-intellisense/extension/dist/server/tailwindServer.js",
|
|
"--stdio"
|
|
},
|
|
on_attach = require'lsp'.common_on_attach
|
|
}
|