diff options
| author | Dmitrii Morozov <dmitrii.morozov@sbb.ch> | 2025-10-28 16:55:47 +0100 | 
|---|---|---|
| committer | Dmitrii Morozov <dmitrii.morozov@sbb.ch> | 2025-10-28 16:55:47 +0100 | 
| commit | efeaf04846afc010440025fa04c7c4d22a4886bb (patch) | |
| tree | 6f025198bf12aa79dfca422d96fceed433af1655 /lua/plugins/neotest-java.lua | |
| parent | 16d9ceaee1f921bf68acfa2ddbda5ddff0c82761 (diff) | |
Enable neotest plugin
Diffstat (limited to 'lua/plugins/neotest-java.lua')
| -rw-r--r-- | lua/plugins/neotest-java.lua | 21 | 
1 files changed, 21 insertions, 0 deletions
diff --git a/lua/plugins/neotest-java.lua b/lua/plugins/neotest-java.lua new file mode 100644 index 0000000..10214bf --- /dev/null +++ b/lua/plugins/neotest-java.lua @@ -0,0 +1,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"] = {}, +      }, +    }, +  }, +}  | 
