From: Samir Benmendil Date: Sun, 7 Dec 2025 20:47:41 +0000 (+0000) Subject: nvim: don't use trouble for neotest X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/ece60757f9fbea873952d61e8705e9dee1373ea1 nvim: don't use trouble for neotest --- diff --git a/nvim/lua/plugins/test.lua b/nvim/lua/plugins/test.lua index 9ed3fc4..68ad914 100644 --- a/nvim/lua/plugins/test.lua +++ b/nvim/lua/plugins/test.lua @@ -5,13 +5,7 @@ return { adapters = {}, status = { virtual_text = true }, output = { open_on_run = true }, - quickfix = { - open = function() - -- TODO: review if I'd prefer to just use quickfix here - -- vim.cmd("copen") - require("trouble").open({ mode = "quickfix", focus = false }) - end, - }, + quickfix = { enabled = true }, }, config = function(_, opts) local neotest_ns = vim.api.nvim_create_namespace("neotest")