LunarVim/lua/lsp/efm-general-ls.lua

16 lines
459 B
Lua
Raw Normal View History

2021-03-17 19:15:20 +01:00
require"lspconfig".efm.setup {
init_options = {documentFormatting = true},
filetypes = {"lua"},
settings = {
rootMarkers = {".git/"},
languages = {
lua = {
{
formatCommand = "lua-format -i --no-keep-simple-function-one-line --no-break-after-operator --column-limit=150 --break-after-table-lb",
formatStdin = true
}
}
}
}
}