18 lines
470 B
Lua
18 lines
470 B
Lua
return {
|
|
cmd = { "dart", "language-server", "--protocol=lsp" },
|
|
filetypes = { "dart" },
|
|
root_markers = { "pubspec.yaml" },
|
|
init_options = {
|
|
onlyAnalyzeProjectsWithOpenFiles = true,
|
|
suggestFromUnimportedLibraries = true,
|
|
closingLabels = true,
|
|
outline = true,
|
|
flutterOutline = true,
|
|
},
|
|
settings = {
|
|
dart = {
|
|
completeFunctionCalls = true,
|
|
showTodos = true,
|
|
},
|
|
},
|
|
}
|