From c1dc37a590d388074380e4f09eb72eaf47cf8891 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Mon, 13 Jan 2025 15:30:05 +0100 Subject: [PATCH] no format md on save --- lua/custom/plugins/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 8738075..575962d 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -25,7 +25,7 @@ return { -- Disable "format_on_save lsp_fallback" for languages that don't -- have a well standardized coding style. You can add additional -- languages here or re-enable it for the disabled ones. - local disable_filetypes = { c = false, cpp = false, json = true, bib = true } + local disable_filetypes = { c = false, cpp = false, json = true, bib = true, md = true } return { timeout_ms = 500, lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype],