From 2867c14d8326019a515993226c58bf0339877381 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Tue, 11 Jan 2022 14:11:40 -0500 Subject: [PATCH] Disable tectonic usage in texlab --- home/kakoune/kak-lsp.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/home/kakoune/kak-lsp.nix b/home/kakoune/kak-lsp.nix index f02bc65..050ed8b 100644 --- a/home/kakoune/kak-lsp.nix +++ b/home/kakoune/kak-lsp.nix @@ -106,12 +106,12 @@ let latex = { command = "texlab"; filetypes = [ "latex" ]; - roots = [ ".git" ]; - settings_section = "texlab"; - settings.texlab.build = { - args = [ "%f" "--synctex" "--keep-logs" "--keep-intermediates" "-Zsearch-path=${config.home.homeDirectory}/texmf" "-Zshell-escape" ]; - executable = "tectonic"; - }; + roots = [ ".git" "main.tex" "all.tex" ]; + # settings_section = "texlab"; + # settings.texlab.build = { + # args = [ "%f" "--synctex" "--keep-logs" "--keep-intermediates" "-Zsearch-path=${config.home.homeDirectory}/texmf" "-Zshell-escape" ]; + # executable = "tectonic"; + # }; }; nim = { command = "nimlsp";