mirror of https://github.com/tiyn/dotfiles
parent
abed395a87
commit
7931d193b6
@ -1,18 +1,19 @@
|
|||||||
return {
|
return {
|
||||||
-- improved refactoring
|
-- improved refactoring
|
||||||
{
|
{
|
||||||
'stevearc/conform.nvim',
|
"stevearc/conform.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("conform").setup({
|
require("conform").setup({
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
python = { "isort", "black" },
|
python = { "isort", "black" },
|
||||||
markdown = { "mdformat" },
|
markdown = { "mdformat" },
|
||||||
tex = { "latexindent" },
|
tex = { "latexindent" },
|
||||||
}
|
lua = { "stylua" },
|
||||||
|
},
|
||||||
})
|
})
|
||||||
require("conform").formatters.latexindent = {
|
require("conform").formatters.latexindent = {
|
||||||
prepend_args = { "-y=defaultIndent: ' '" },
|
prepend_args = { "-y=defaultIndent: ' '" },
|
||||||
}
|
}
|
||||||
end
|
end,
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
column_width = 100
|
||||||
|
line_endings = "Unix"
|
||||||
|
indent_type = "Spaces"
|
||||||
|
indent_width = 2
|
||||||
|
quote_style = "AutoPreferDouble"
|
||||||
|
call_parentheses = "Always"
|
||||||
|
collapse_simple_statement = "Never"
|
||||||
|
|
||||||
|
[sort_requires]
|
||||||
|
enabled = true
|
Loading…
Reference in new issue