summaryrefslogtreecommitdiff
path: root/start/lspconfig-0.1.8/lua/lspconfig/server_configurations/v_analyzer.lua
blob: d38925934ad96682a66e715b1f895071c987aaf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
local util = require 'lspconfig.util'

return {
  default_config = {
    cmd = { 'v-analyzer' },
    filetypes = { 'v', 'vsh', 'vv' },
    root_dir = util.root_pattern('v.mod', '.git'),
  },
  docs = {
    description = [[
https://github.com/v-analyzer/v-analyzer

V language server.

`v-analyzer` can be installed by following the instructions [here](https://github.com/v-analyzer/v-analyzer#installation).
]],
    default_config = {
      root_dir = [[root_pattern("v.mod", ".git")]],
    },
  },
}