Just a preview for Neovim's quickfix list.
| Fill | Fixed height |
|---|---|
![]() |
![]() |
The pretty quickfix list is by the awesome
stevearc/quicker.nvim.
Install qfpreview.nvim using your favorite plugin manager.
{
'r0nsha/qfpreview.nvim',
opts = {
-- Your custom configuration goes here
}
}use({
'r0nsha/qfpreview.nvim',
config = function()
require('qfpreview').setup({
-- Your custom configuration goes here
})
end
})Here are the default configuration options:
require('qfpreview').setup({
ui = {
-- number | "fill"
-- number will set the window to a fixed height
-- "fill" will make the window fill the editor's remaining space
height = "fill",
-- whether to show the buffer's name
show_name = true,
-- additinonal window configuration
win = {}
},
opts = {
-- the window's throttle time in milliseconds
throttle = 100,
-- whether to enable lsp clients
lsp = true,
-- whether to enable diagnostics
diagnostics = true
}
})Contributions are always welcome! If you find any bugs or have a feature request, you're welcome to open an issue or submit a pull request.

