From c1ebf2119f06edcf5d995d352dc0ac46948ff0f7 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Thu, 19 Jun 2025 13:56:07 +0200 Subject: [PATCH] fix(neovim): disable ts and markdown until deno builds. --- modules/cross-platform/home-manager/neovim.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cross-platform/home-manager/neovim.nix b/modules/cross-platform/home-manager/neovim.nix index 9616eca..85273a8 100644 --- a/modules/cross-platform/home-manager/neovim.nix +++ b/modules/cross-platform/home-manager/neovim.nix @@ -124,7 +124,7 @@ in { format.type = "black-and-isort"; }; css.enable = true; - ts.enable = true; + ts.enable = false; nix = { enable = true; lsp = { @@ -149,7 +149,7 @@ in { }; }; markdown = { - enable = true; + enable = false; extensions.render-markdown-nvim.enable = true; }; html.enable = true;