mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
13 lines
320 B
Lua
13 lines
320 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/JohnnyMorganz/StyLua
|
|
---
|
|
--- A deterministic code formatter for Lua 5.1, 5.2, 5.3, 5.4, LuaJIT, Luau and CfxLua/FiveM Lua
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'stylua', '--lsp' },
|
|
filetypes = { 'lua' },
|
|
root_markers = { '.stylua.toml', 'stylua.toml', '.editorconfig' },
|
|
}
|