dotfiles/home/nvim/files/lua/plugins/conform.lua

15 lines
343 B
Lua

return {
'stevearc/conform.nvim',
opts = {
formatters_by_ft = {
python = { 'ruff_format' },
nix = { 'alejandra' },
},
format_on_save = {
-- These options will be passed to conform.format()
timeout_ms = 500,
lsp_format = "fallback",
},
}
}