Compare commits
No commits in common. "f55f491c46501561516e18de945d0b9bdb74e2f5" and "c160396483cd0ff50736c5c1be4ef32242b594d7" have entirely different histories.
f55f491c46
...
c160396483
3 changed files with 1 additions and 45 deletions
|
@ -27,7 +27,7 @@ return {
|
||||||
lualine_a = { "mode" },
|
lualine_a = { "mode" },
|
||||||
lualine_b = { "branch", "diff", "diagnostics" },
|
lualine_b = { "branch", "diff", "diagnostics" },
|
||||||
lualine_c = { "filename" },
|
lualine_c = { "filename" },
|
||||||
lualine_x = { "g:metals_status", "encoding", "fileformat", "filetype", "overseer" },
|
lualine_x = { "g:metals_status", "encoding", "fileformat", "filetype" },
|
||||||
lualine_y = { "progress" },
|
lualine_y = { "progress" },
|
||||||
lualine_z = { "location" },
|
lualine_z = { "location" },
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
return {
|
|
||||||
"nvim-neotest/neotest",
|
|
||||||
dependencies = {
|
|
||||||
"nvim-neotest/nvim-nio",
|
|
||||||
"nvim-lua/plenary.nvim",
|
|
||||||
"antoinemadec/FixCursorHold.nvim",
|
|
||||||
"nvim-treesitter/nvim-treesitter",
|
|
||||||
"rcasia/neotest-java",
|
|
||||||
"nvim-neotest/neotest-python",
|
|
||||||
"stevanmilic/neotest-scala",
|
|
||||||
},
|
|
||||||
keys = {
|
|
||||||
{ "<leader>na", "<cmd>lua require('neotest').run.attach()<cr>", desc = "Attach to the nearest test" },
|
|
||||||
{ "<leader>nl", "<cmd>lua require('neotest').run.run_last()<cr>", desc = "Toggle Test Summary" },
|
|
||||||
{ "<leader>no", "<cmd>lua require('neotest').output_panel.toggle()<cr>", desc = "Toggle Test Output Panel" },
|
|
||||||
{ "<leader>np", "<cmd>lua require('neotest').run.stop()<cr>", desc = "Stop the nearest test" },
|
|
||||||
{ "<leader>ns", "<cmd>lua require('neotest').summary.toggle()<cr>", desc = "Toggle Test Summary" },
|
|
||||||
{ "<leader>nt", "<cmd>lua require('neotest').run.run()<cr>", desc = "Run the nearest test" },
|
|
||||||
{
|
|
||||||
"<leader>nT",
|
|
||||||
"<cmd>lua require('neotest').run.run(vim.fn.expand('%'))<cr>",
|
|
||||||
desc = "Run test the current file",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
opts = {
|
|
||||||
adapters = {
|
|
||||||
["neotest-java"] = {},
|
|
||||||
["neotest-python"] = {
|
|
||||||
runner = "pytest",
|
|
||||||
args = { "-vvv" },
|
|
||||||
python = ".venv/bin/python",
|
|
||||||
},
|
|
||||||
["neotest-scala"] = {
|
|
||||||
runner = "sbt",
|
|
||||||
command = "test",
|
|
||||||
framework = "munit",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
return {
|
|
||||||
"stevearc/overseer.nvim",
|
|
||||||
opts = {},
|
|
||||||
}
|
|
Loading…
Reference in a new issue