Files
nvim/lua/lsp/bashls.lua
T
2024-01-08 11:18:13 +01:00

16 lines
277 B
Lua

return {
enabled = true,
dependencies = {
"npm",
},
lspconfig = {
filetypes = {
"sh",
"bash",
"zsh",
},
cmd = { "bash-language-server", "start", },
single_file_support = true,
},
}