mirror of https://github.com/tiyn/dotfiles
parent
abed395a87
commit
7931d193b6
@ -1,18 +1,19 @@
|
||||
return {
|
||||
-- improved refactoring
|
||||
{
|
||||
'stevearc/conform.nvim',
|
||||
"stevearc/conform.nvim",
|
||||
config = function()
|
||||
require("conform").setup({
|
||||
formatters_by_ft = {
|
||||
python = { "isort", "black" },
|
||||
markdown = { "mdformat" },
|
||||
tex = { "latexindent" },
|
||||
}
|
||||
lua = { "stylua" },
|
||||
},
|
||||
})
|
||||
require("conform").formatters.latexindent = {
|
||||
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