https://github.com/quiibz/pretty-quickfix.nvim
Just a prettier Quickfix list for neovim
https://github.com/quiibz/pretty-quickfix.nvim
neovim nvim quickfix vim
Last synced: 5 months ago
JSON representation
Just a prettier Quickfix list for neovim
- Host: GitHub
- URL: https://github.com/quiibz/pretty-quickfix.nvim
- Owner: QuiiBz
- License: mit
- Created: 2025-09-07T16:32:00.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-09-09T16:29:02.000Z (5 months ago)
- Last Synced: 2025-09-09T19:56:57.049Z (5 months ago)
- Topics: neovim, nvim, quickfix, vim
- Language: Lua
- Homepage:
- Size: 1.57 MB
- Stars: 6
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## pretty-quickfix.nvim
I wanted a prettier quickfix window, without any extra features. This plugin does just that.
- Uses `nvim-web-devicons` to display an icon for each entries
- De-cluttered output
- When all entries are files, de-duplicate the content
| | Before | After |
|------|--------|-------|
| Default view |  |  |
| Files only |  |  |
## Installation
### Lazy.nvim
```lua
{
'QuiiBz/pretty-quickfix.nvim',
dependencies = { 'nvim-web-devicons' },
ft = { 'qf' }, -- lazy load
opts = {}, -- view options below
}
```
## Options
```lua
{
show_line_numbers = true, -- Whether to show line numbers in the quickfix list
format = 'filepath', -- Display entries with the file name or file path
files_list_format = 'filepath', -- Same as the above but when all entries are files
}
```
## Sponsors

## License
[MIT](./LICENSE)