1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-13 04:51:15 +02:00

nvim: added conform.nvim and updated plugins

This commit is contained in:
2023-10-04 19:12:59 +02:00
parent 529ba57816
commit 0cbe61a255
4 changed files with 46 additions and 29 deletions

View File

@@ -0,0 +1,11 @@
return {
{
'stevearc/conform.nvim',
opts = {
formatters_by_ft = {
python = { "isort", "black" },
markdown = { "mdformat" },
},
}
}
}