From 27e1e74488879c97ea8e60974ca53e88dc6197c0 Mon Sep 17 00:00:00 2001 From: Sam Date: Sun, 12 Jan 2025 10:24:19 +0000 Subject: [PATCH] revert conform --- home/common/core/nixvim/plugins/conform.nix | 38 ++++++++++----------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/home/common/core/nixvim/plugins/conform.nix b/home/common/core/nixvim/plugins/conform.nix index 3574907..5c1bd48 100644 --- a/home/common/core/nixvim/plugins/conform.nix +++ b/home/common/core/nixvim/plugins/conform.nix @@ -1,26 +1,24 @@ { programs.nixvim.plugins.conform-nvim = { enable = true; - settings = { - notifyOnError = true; - logLevel = "debug"; - formattersByFt = { - html = ["prettierd"]; - css = ["prettierd"]; - javascript = ["prettierd"]; - python = ["black"]; - lua = ["stylua"]; - nix = ["alejandra"]; - markdown = ["prettierd"]; - yaml = ["yamlfmt"]; - sql = ["sqlfmt"]; - #sql = ["sql-formatter"]; - bash = [ - "shellcheck" - "shellharden" - "shfmt" - ]; - }; + notifyOnError = true; + logLevel = "debug"; + formattersByFt = { + html = ["prettierd"]; + css = ["prettierd"]; + javascript = ["prettierd"]; + python = ["black"]; + lua = ["stylua"]; + nix = ["alejandra"]; + markdown = ["prettierd"]; + yaml = ["yamlfmt"]; + sql = ["sqlfmt"]; + #sql = ["sql-formatter"]; + bash = [ + "shellcheck" + "shellharden" + "shfmt" + ]; }; # formatters = { # sql-formatter = {