From 0a7be2916bdf563a4af73399cd0bc8cc6cec7b28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Hamal=20Dvo=C5=99=C3=A1k?= Date: Thu, 22 Aug 2024 12:38:56 +0200 Subject: [PATCH] Disable SQL line wrapping --- lua/config/format.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/config/format.lua b/lua/config/format.lua index 1bac0d1..487fced 100644 --- a/lua/config/format.lua +++ b/lua/config/format.lua @@ -9,6 +9,6 @@ require('nvim-format-buffer').setup({ return 'prettier --stdin-filepath ' .. vim.api.nvim_buf_get_name(0) 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" } }, })