trouble.nvim
trouble.nvim copied to clipboard
bug: Not displaying text / can't see items in Trouble
Did you check docs and existing issues?
- [X] I have read all the trouble.nvim docs
- [X] I have searched the existing issues of trouble.nvim
- [X] I have searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
NVIM v0.10.0-dev
Operating system/version
POP_OS! 22.04 (Ubuntu based)
Describe the bug
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
- Load up LazyVim
- Type :Trouble
- 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
I've been trying it since (also the beta version).... it seems to work when in a file with errors.
However the text is still covered
That's just your colorscheme. Add proper highlught groups, or use a proper colorscheme like tokyonight, catppuccin, ...