mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-22 19:55:10 +02:00
fix styling issues (#811)
This commit is contained in:
parent
a9e7b6ff8c
commit
2866ba528c
11 changed files with 170 additions and 176 deletions
|
@ -1,12 +1,13 @@
|
|||
-- TODO what is a tailwindcss filetype
|
||||
local lspconfig = require 'lspconfig'
|
||||
local lspconfig = require "lspconfig"
|
||||
|
||||
lspconfig.tailwindcss.setup {
|
||||
cmd = {
|
||||
"node", DATA_PATH .. "/lspinstall/tailwindcss/tailwindcss-intellisense/extension/dist/server/tailwindServer.js",
|
||||
"--stdio"
|
||||
},
|
||||
filetypes = O.lang.tailwindcss.filetypes,
|
||||
root_dir = require("lspconfig/util").root_pattern("tailwind.config.js", "postcss.config.ts", ".postcssrc"),
|
||||
on_attach = require'lsp'.common_on_attach
|
||||
cmd = {
|
||||
"node",
|
||||
DATA_PATH .. "/lspinstall/tailwindcss/tailwindcss-intellisense/extension/dist/server/tailwindServer.js",
|
||||
"--stdio",
|
||||
},
|
||||
filetypes = O.lang.tailwindcss.filetypes,
|
||||
root_dir = require("lspconfig/util").root_pattern("tailwind.config.js", "postcss.config.ts", ".postcssrc"),
|
||||
on_attach = require("lsp").common_on_attach,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue