blob: 224e8d230859dc1cd044c17c6342f923744b62f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
local server = require('nvim-lsp-installer.server')
local root_dir = server.get_server_root_path('bash')
return server.Server:new {
name = "bashls",
root_dir = root_dir,
install_cmd = [[npm install bash-language-server@latest]],
default_options = {
cmd = { root_dir .. "/node_modules/.bin/bash-language-server", "start" },
},
}
|