diff options
Diffstat (limited to 'lua/nvim-lsp-installer/servers/texlab/init.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/texlab/init.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/servers/texlab/init.lua b/lua/nvim-lsp-installer/servers/texlab/init.lua index a28b4273..6415986f 100644 --- a/lua/nvim-lsp-installer/servers/texlab/init.lua +++ b/lua/nvim-lsp-installer/servers/texlab/init.lua @@ -18,7 +18,10 @@ return server.Server:new { name = "texlab", root_dir = root_dir, installer = { - std.ensure_executables { "pdflatex" }, + std.ensure_executables { + { "pdflatex" }, + "A TeX distribution is not installed. Refer to https://www.latex-project.org/get/.", + }, std.untargz_remote(("https://github.com/latex-lsp/texlab/releases/download/%s/%s"):format(VERSION, target)), }, default_options = { |
