From b5bf376dcdd4a9820fd8bb075f8c88b4623666b4 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 16 May 2023 08:57:39 +0800 Subject: feat: add cobol language support (#2616) --- lua/lspconfig/server_configurations/cobol_ls.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lua/lspconfig/server_configurations/cobol_ls.lua (limited to 'lua') diff --git a/lua/lspconfig/server_configurations/cobol_ls.lua b/lua/lspconfig/server_configurations/cobol_ls.lua new file mode 100644 index 00000000..867271b9 --- /dev/null +++ b/lua/lspconfig/server_configurations/cobol_ls.lua @@ -0,0 +1,17 @@ +local util = require 'lspconfig.util' + +return { + default_config = { + cmd = { 'cobol-language-support' }, + filetypes = { 'cobol' }, + root_dir = util.find_git_ancestor, + }, + docs = { + description = [[ +Cobol language support + ]], + default_config = { + root_dir = [[util.find_git_ancestor]], + }, + }, +} -- cgit v1.3.1