From ec8317ddcdb4643d8c44db4164e8ee5783958f25 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Mon, 26 Jan 2026 16:56:24 +0100 Subject: [PATCH] Explicit formatters; cleanup --- .config/nvim/lua/plugins/conform.lua | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.config/nvim/lua/plugins/conform.lua b/.config/nvim/lua/plugins/conform.lua index 1186b12..d6f1842 100644 --- a/.config/nvim/lua/plugins/conform.lua +++ b/.config/nvim/lua/plugins/conform.lua @@ -5,13 +5,8 @@ return { formatters_by_ft = { sh = { "shfmt" }, bash = { "shfmt" }, + lua = { "stylua" }, + fish = { "fish_indent" }, }, - - -- format_on_save = { - -- -- These options will be passed to conform.format() - -- timeout_ms = 500, - -- lsp_fallback = true, - -- quiet = true, - -- }, }, }