mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-11 01:55:48 +08:00
30 lines
753 B
Lua
30 lines
753 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
local root_files = { 'configure.ac', 'Makefile', 'Makefile.am', '*.mk' }
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'autotools-language-server' },
|
||
|
filetypes = { 'config', 'automake', 'make' },
|
||
|
root_dir = function(fname)
|
||
|
return util.root_pattern(unpack(root_files))(fname)
|
||
|
end,
|
||
|
single_file_support = true,
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://github.com/Freed-Wu/autotools-language-server
|
||
|
|
||
|
`autotools-language-server` can be installed via `pip`:
|
||
|
```sh
|
||
|
pip install autotools-language-server
|
||
|
```
|
||
|
|
||
|
Language server for autoconf, automake and make using tree sitter in python.
|
||
|
]],
|
||
|
default_config = {
|
||
|
root_dir = { 'configure.ac', 'Makefile', 'Makefile.am', '*.mk' },
|
||
|
},
|
||
|
},
|
||
|
}
|