folke / trouble.nvim

🚦 A pretty diagnostics, references, telescope results, quickfix and location list to help you solve all the trouble your code is causing.
Apache License 2.0
5.12k stars 172 forks source link

bug: Not displaying text / can't see items in Trouble #412

Closed aindriu80 closed 1 month ago

aindriu80 commented 3 months ago

Did you check docs and existing issues?

Neovim version (nvim -v)

NVIM v0.10.0-dev

Operating system/version

POP_OS! 22.04 (Ubuntu based)

Describe the bug

2024-04-04_14-52

When I type :Trouble I see the screen in the attached image. I can't see error messages - only this coloured screen

Steps To Reproduce

  1. Load up LazyVim
  2. Type :Trouble
  3. Notice the light coloured background instead of text with errors

Expected Behavior

I expect to see the errors.

here is my trouble.lua in /plugins of lua

return {
  "folke/trouble.nvim",
  dependencies = { "nvim-tree/nvim-web-devicons" },
  opts = {
    -- your configuration comes here
    -- or leave it empty to use the default settings
    -- refer to the configuration section below
    use_diagnostic_signs = true,
  },
}

Repro

-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
  vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  "folke/tokyonight.nvim",
  "folke/trouble.nvim",
  -- add any other plugins here
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

vim.cmd.colorscheme("tokyonight")
-- add anything else here
aindriu80 commented 3 months ago

I've been trying it since (also the beta version).... it seems to work when in a file with errors.

2024-04-04_16-02

However the text is still covered

folke commented 1 month ago

That's just your colorscheme. Add proper highlught groups, or use a proper colorscheme like tokyonight, catppuccin, ...