diff options
author | Tiberiu Craciun <[email protected]> | 2021-07-14 18:06:07 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-14 11:06:07 -0400 |
commit | 623c2e62b5a61d64cf1590c3932844efbc24116d (patch) | |
tree | 5f4fb6c1b70eec4dfc7959202fa17af0c22989d7 /lua/default-config.lua | |
parent | 1a26b973d131a2713da49debd3a078ad32d03d44 (diff) |
added default elixir formatter (#934)
Diffstat (limited to 'lua/default-config.lua')
-rw-r--r-- | lua/default-config.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lua/default-config.lua b/lua/default-config.lua index 4f7eb045..78d33fad 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -123,7 +123,13 @@ O = { efm = {}, elm = {}, emmet = { active = false }, - elixir = {}, + elixir = { + formatter = { + exe = "mix", + args = { "format" }, + stdin = true, + }, + }, graphql = {}, go = { formatter = { |