Fix the config for termux_language_server, allowing it to fully work with all filetypes it actually supports
21 lines
288 B
Lua
21 lines
288 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { "termux-language-server" },
|
|
filetypes = {
|
|
"sh.build",
|
|
"sh.subpackage",
|
|
|
|
"sh.PKGBUILD",
|
|
"sh.install",
|
|
"sh.makepkg.conf",
|
|
|
|
"sh.ebuild",
|
|
"sh.eclass",
|
|
"sh.make.conf",
|
|
"sh.color.map",
|
|
|
|
"sh.mdd",
|
|
},
|
|
single_file_support = true,
|
|
}
|