From 06c370206717ef432500cfd7f2c636831e40ebad Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Wed, 11 Sep 2024 13:49:43 -0400 Subject: [PATCH] refactor(nvim/latex): switch from vimtex to texlab --- pkgs/nvim/config/languages/latex/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/nvim/config/languages/latex/default.nix b/pkgs/nvim/config/languages/latex/default.nix index fe024da..2161c19 100644 --- a/pkgs/nvim/config/languages/latex/default.nix +++ b/pkgs/nvim/config/languages/latex/default.nix @@ -1,6 +1,8 @@ { - plugins.vimtex = { + plugins.lsp.servers.texlab = { enable = true; - texlivePackage = null; + settings.texlab = { + build.onSave = true; + }; }; }