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

17 lines
411 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 = {
{
2021-03-17 20:48:52 +01:00
formatCommand = "lua-format -i --no-keep-simple-function-one-line --column-limit=100",
2021-03-17 19:15:20 +01:00
formatStdin = true
}
}
}
}
}
2021-03-17 20:48:52 +01:00