mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
283 B
Lua
13 lines
283 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/antonk52/lua-3p-language-servers
|
|
---
|
|
--- 3rd party Language Server for Stylua lua formatter
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'stylua-3p-language-server' },
|
|
filetypes = { 'lua' },
|
|
root_markers = { '.stylua.toml', 'stylua.toml' },
|
|
}
|