From 7c34362bccf693dc473e273820d4c3463ecf67eb Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Sun, 24 Nov 2024 18:42:11 +0300 Subject: [PATCH] neovim: disable auto neoformat --- neovim/dev.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neovim/dev.nix b/neovim/dev.nix index d248b72..7265293 100644 --- a/neovim/dev.nix +++ b/neovim/dev.nix @@ -183,7 +183,7 @@ in }; plugins.style.neoformat.autoformat = { - enable = true; + enable = false; pattern = [ "*.ts" "*.mts" "*.cts" "*.tsx" "*.rs" "flake.nix" ]; };