dart.lua 325 B

1234567891011
  1. require("lspconfig").dartls.setup {
  2. cmd = { "dart", O.lang.dart.sdk_path, "--lsp" },
  3. on_attach = require("lsp").common_on_attach,
  4. init_options = {
  5. closingLabels = false,
  6. flutterOutline = false,
  7. onlyAnalyzeProjectsWithOpenFiles = false,
  8. outline = false,
  9. suggestFromUnimportedLibraries = true,
  10. },
  11. }