Making prettier allow for wider single-line entries

This commit is contained in:
Ian Roddis
2024-09-26 11:08:37 -03:00
parent d87f1e19d8
commit 3dc84877a7
+1 -1
View File
@@ -478,7 +478,7 @@ require('formatter').setup {
function()
return {
exe = 'prettier',
args = { '--stdin-filepath', vim.api.nvim_buf_get_name(0) },
args = { '--stdin-filepath', vim.api.nvim_buf_get_name(0), '--print-width', 120 },
stdin = true,
}
end,