blob: 966747199977b150eaf2ea590b3a7e2ab4ed2696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'dcm', 'start-server', '--client=neovim' },
filetypes = { 'dart' },
root_dir = util.root_pattern 'pubspec.yaml',
},
docs = {
description = [[
https://dcm.dev/
Language server for DCM analyzer.
]],
default_config = {
root_dir = [[root_pattern("pubspec.yaml")]],
},
},
}
|