summaryrefslogtreecommitdiff
path: root/lua/plugins/neotest-java.lua
blob: 10214bfd7b170d8cb0bcede31538497a7cc02eb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
return {
  {
    "rcasia/neotest-java",
    ft = "java",
    dependencies = {},
  },
  {
    "nvim-neotest/neotest",
    dependencies = {
      "nvim-neotest/nvim-nio",
      "nvim-lua/plenary.nvim",
      "antoinemadec/FixCursorHold.nvim",
      "nvim-treesitter/nvim-treesitter",
    },
    opts = {
      adapters = {
        ["neotest-java"] = {},
      },
    },
  },
}