diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/autotools_ls.lua | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/autotools_ls.lua b/lua/lspconfig/server_configurations/autotools_ls.lua new file mode 100644 index 00000000..f5bc2f72 --- /dev/null +++ b/lua/lspconfig/server_configurations/autotools_ls.lua @@ -0,0 +1,29 @@ +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' }, + }, + }, +} |
