1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-04-19 16:27:45 +02:00

Compare commits

..

No commits in common. "7931d193b69fa6000eb592962d96d03c5b0738a4" and "f789c139cbe87f23f01d2c5e4c9652b15716b58a" have entirely different histories.

5 changed files with 38 additions and 64 deletions

View File

@ -1,5 +1,4 @@
Bonitur Bonitur
Königinnensubstanz Königinnensubstanz
Magazinbeute Magazinbeute
Magazinbeuten
Pollenhose Pollenhose

View File

@ -1,19 +1,12 @@
return { return {
-- improved refactoring -- improved refactoring
{ {
"stevearc/conform.nvim", 'stevearc/conform.nvim',
config = function() opts = {
require("conform").setup({
formatters_by_ft = { formatters_by_ft = {
python = { "isort", "black" }, python = { "isort", "black" },
markdown = { "mdformat" }, markdown = { "mdformat" },
tex = { "latexindent" },
lua = { "stylua" },
},
})
require("conform").formatters.latexindent = {
prepend_args = { "-y=defaultIndent: ' '" },
} }
end, }
}, }
} }

View File

@ -8,15 +8,11 @@ return {
config = function() config = function()
require("null-ls").setup({ require("null-ls").setup({
sources = { sources = {
-- latex -- python
require("null-ls").builtins.formatting.latexindent, require("null-ls").builtins.formatting.isort,
-- lua require("null-ls").builtins.formatting.black,
require("null-ls").builtins.formatting.stylua,
-- markdown -- markdown
require("null-ls").builtins.formatting.mdformat, require("null-ls").builtins.formatting.mdformat,
-- python
require("null-ls").builtins.formatting.black,
require("null-ls").builtins.formatting.isort,
} }
}) })
end end
@ -26,11 +22,7 @@ return {
opts = { opts = {
automatic_installation = true, automatic_installation = true,
ensure_installed = { ensure_installed = {
"black", "isort", "black", "mdformat"
"isort",
"latexindent",
"mdformat",
"stylua",
} }
} }
} }

View File

@ -1,10 +0,0 @@
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