nVim/lsp/termux_language_server.lua
Robert Morrison 986aa13d27 fix(termux_language_server): fix lsp config
Fix the config for termux_language_server, allowing it to fully work
with all filetypes it actually supports
2025-09-28 04:37:09 +01:00

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,
}