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.36k stars 175 forks source link

bug: Default loclist #276

Closed tororutsu closed 3 months ago

tororutsu commented 1 year ago

Did you check docs and existing issues?

Neovim version (nvim -v)

0.10.0-dev-36+g7ffe45017

Operating system/version

Void Linux

Describe the bug

I want to disable the default loclist that pops up and replace it with Troubles. image

Steps To Reproduce

  1. Install trouble
  2. Save code
  3. Default Loclistshows up not trouble

Expected Behavior

I want Troubles loclist to be the default

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
marcoSven commented 1 year ago

I am having the same issue