diff options
Diffstat (limited to 'lua/nvim-lsp-installer/servers')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/groovyls/init.lua | 2 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/servers/texlab/init.lua | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lua/nvim-lsp-installer/servers/groovyls/init.lua b/lua/nvim-lsp-installer/servers/groovyls/init.lua index 1b492c4d..cf5a3d7d 100644 --- a/lua/nvim-lsp-installer/servers/groovyls/init.lua +++ b/lua/nvim-lsp-installer/servers/groovyls/init.lua @@ -8,7 +8,7 @@ return server.Server:new { name = "groovyls", root_dir = root_dir, installer = { - std.ensure_executables { "javac" }, + std.ensure_executables { { "javac", "javac was not found in path." } }, std.git_clone "https://github.com/GroovyLanguageServer/groovy-language-server", std.gradlew { args = { "build" }, 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 = { |
