aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/c3_lsp.lua
blob: ca4ec49c64677368702e49ae08f2c440d68d86ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local util = require 'lspconfig.util'

return {
  default_config = {
    cmd = { 'c3lsp' },
    root_dir = function(fname)
      return util.root_pattern { 'project.json', 'manifest.json', '.git' }(fname)
    end,
    filetypes = { 'c3', 'c3i' },
  },
  docs = {
    description = [[
https://github.com/pherrymason/c3-lsp

Language Server for c3.
]],
  },
}