stylua fixes
This commit is contained in:
parent
fcac6f65d0
commit
5c3df06138
|
@ -1,6 +1,6 @@
|
||||||
column_width = 120
|
column_width = 80
|
||||||
line_endings = "Unix"
|
line_endings = "Unix"
|
||||||
indent_type = "Tab"
|
indent_type = "Tab"
|
||||||
indent_width = 2
|
indent_width = 1
|
||||||
quote_style = "AutoPreferSingle"
|
quote_style = "AutoPreferSingle"
|
||||||
call_parentheses = "None"
|
call_parentheses = "None"
|
||||||
|
|
4
init.lua
4
init.lua
|
@ -658,7 +658,6 @@ require('lazy').setup({
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
lua = { 'stylua' },
|
|
||||||
-- Conform can also run multiple formatters sequentially
|
-- Conform can also run multiple formatters sequentially
|
||||||
-- python = { "isort", "black" },
|
-- python = { "isort", "black" },
|
||||||
--
|
--
|
||||||
|
@ -674,7 +673,8 @@ require('lazy').setup({
|
||||||
yaml = { 'prettier' },
|
yaml = { 'prettier' },
|
||||||
markdown = { 'prettier' },
|
markdown = { 'prettier' },
|
||||||
graphql = { 'prettier' },
|
graphql = { 'prettier' },
|
||||||
javascript = { { 'prettierd', 'prettier' } },
|
javascript = { 'prettierd', 'prettier' },
|
||||||
|
lua = {'stylua'},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue