File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 43
43
44
44
return {
45
45
check = function ()
46
- health .start (" Required plugin depencies:" )
46
+ health .start (" Neovim version check" )
47
+ if vim .fn .has (" nvim-0.10.4" ) == 1 then
48
+ health .ok (" Neovim version is OK" )
49
+ else
50
+ health .error (" Neovim 0.10.4+ is required" )
51
+ end
52
+
53
+ health .start (" Required plugin dependencies" )
47
54
check_plugin (" neotest" , " nvim-neotest/neotest" )
48
55
check_plugin (" nvim-treesitter" , " nvim-treesitter/nvim-treesitter" )
49
56
check_treesitter ()
50
57
check_plugin (" nio" , " nvim-neotest/nvim-nio" )
51
58
check_plugin (" plenary" , " nvim-lua/plenary.nvim" )
52
59
check_plugin (" jdtls" , " mfussenegger/nvim-jdtls" )
60
+
61
+ health .start (" Required plugin dependencies for debugging" )
53
62
check_plugin (" dap" , " mfussenegger/nvim-dap" )
54
63
check_plugin (" dapui" , " rcarriga/nvim-dap-ui" )
55
64
check_plugin (" nvim-dap-virtual-text" , " theHamsta/nvim-dap-virtual-text" )
56
65
57
- health .start (" Required binaries: " )
66
+ health .start (" Required binaries" )
58
67
check_bin (binaries .java ())
59
68
check_bin (binaries .javac ())
60
69
end ,
You can’t perform that action at this time.
0 commit comments