Disable SQL line wrapping
This commit is contained in:
parent
20f8fe24bf
commit
0a7be2916b
1 changed files with 1 additions and 1 deletions
|
@ -9,6 +9,6 @@ require('nvim-format-buffer').setup({
|
||||||
return 'prettier --stdin-filepath ' .. vim.api.nvim_buf_get_name(0)
|
return 'prettier --stdin-filepath ' .. vim.api.nvim_buf_get_name(0)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ pattern = { "*.sql" }, command = "pg_format --spaces=2 --wrap-limit=78 --no-rcfile" }
|
{ pattern = { "*.sql" }, command = "pg_format --spaces=2 --wrap-limit=1000 --no-rcfile" }
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue