From 665680a5caeb57ff73e0a112ac805f5456f2a91d Mon Sep 17 00:00:00 2001 From: elythh Date: Mon, 26 Aug 2024 20:34:41 +0200 Subject: [PATCH] plugins/lint: fix conform incorrect option description --- plugins/lsp/conform-nvim.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/lsp/conform-nvim.nix b/plugins/lsp/conform-nvim.nix index 5760589c..bf952294 100644 --- a/plugins/lsp/conform-nvim.nix +++ b/plugins/lsp/conform-nvim.nix @@ -97,7 +97,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin config { ```nix # Map of filetype to formatters - formattersByFt = + formatters_by_ft = { lua = [ "stylua" ]; # Conform will run multiple formatters sequentially @@ -165,7 +165,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin config { settingsExample = lib.literalMD '' ```nix { - formattersByFt = { + formatters_by_ft = { bash = [ "shellcheck" "shellharden"