This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
.nvim/lua/plugins/format.lua
Gustavo "Guz" L. de Mello 9a8fa8916c fix: auto-save and format problem
2024-01-09 19:28:35 -03:00

13 lines
181 B
Lua

return {{
'stevearc/conform.nvim',
opts = {
formatters_by_ft = {
nix = { 'nixpkgs_fmt' },
},
format_on_save = {
timeout_ms = 500,
lsp_fallback = true,
},
},
}};