From 4a4f08c331b56e8f58a9316d40705771cc1e2b7a Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 21 Aug 2024 22:37:20 +0200 Subject: [PATCH] disable formatter --- lua/plugins/format.lua | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/lua/plugins/format.lua b/lua/plugins/format.lua index 74e0fb8..1205442 100644 --- a/lua/plugins/format.lua +++ b/lua/plugins/format.lua @@ -1,19 +1,19 @@ return { - 'stevearc/conform.nvim', - lazy = false, - opts = { - notify_on_error = true, - -- formatters_by_ft = { - -- svelte = { "prettier" }, - -- vue = { "prettier" }, - -- }, - format_on_save = { - lsp_fallback = true, - timeout_ms = 1500, - }, - }, - config = function(_, opts) - local plug = require('conform') - plug.setup(opts) - end, + -- 'stevearc/conform.nvim', + -- lazy = false, + -- opts = { + -- notify_on_error = true, + -- -- formatters_by_ft = { + -- -- svelte = { "prettier" }, + -- -- vue = { "prettier" }, + -- -- }, + -- format_on_save = { + -- lsp_fallback = true, + -- timeout_ms = 1500, + -- }, + -- }, + -- config = function(_, opts) + -- local plug = require('conform') + -- plug.setup(opts) + -- end, }