aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/cobol_ls.lua
blob: 867271b938c6e076c964f00b4f5a344bd2a41f18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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]],
    },
  },
}