diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-04-22 05:44:50 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-22 05:44:50 -0700 |
| commit | d3458965499eec45d87685d6a423b99ac182e385 (patch) | |
| tree | e7563a6837744d02974c180588796a9d1f3f6f8d /lsp/autotools_ls.lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-d3458965499eec45d87685d6a423b99ac182e385.tar nvim-lspconfig-d3458965499eec45d87685d6a423b99ac182e385.tar.gz nvim-lspconfig-d3458965499eec45d87685d6a423b99ac182e385.tar.bz2 nvim-lspconfig-d3458965499eec45d87685d6a423b99ac182e385.tar.lz nvim-lspconfig-d3458965499eec45d87685d6a423b99ac182e385.tar.xz nvim-lspconfig-d3458965499eec45d87685d6a423b99ac182e385.tar.zst nvim-lspconfig-d3458965499eec45d87685d6a423b99ac182e385.zip | |
ci(lint): check `@brief` docstring placement #3762
Diffstat (limited to 'lsp/autotools_ls.lua')
| -rw-r--r-- | lsp/autotools_ls.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lsp/autotools_ls.lua b/lsp/autotools_ls.lua index 8777bfbb..caa17b29 100644 --- a/lsp/autotools_ls.lua +++ b/lsp/autotools_ls.lua @@ -1,7 +1,3 @@ -local util = require 'lspconfig.util' - -local root_files = { 'configure.ac', 'Makefile', 'Makefile.am', '*.mk' } - ---@brief --- --- https://github.com/Freed-Wu/autotools-language-server @@ -12,6 +8,11 @@ local root_files = { 'configure.ac', 'Makefile', 'Makefile.am', '*.mk' } --- ``` --- --- Language server for autoconf, automake and make using tree sitter in python. + +local util = require 'lspconfig.util' + +local root_files = { 'configure.ac', 'Makefile', 'Makefile.am', '*.mk' } + return { cmd = { 'autotools-language-server' }, filetypes = { 'config', 'automake', 'make' }, |
