qfview.nvim makes your quickfix/location window look nicer and function better. Meant to be the successor of nvim-pqf.
qfview.nvim uses Neovim's built-in diagnostic signs to highlight the item type. You can change your diagnostic symbols following this instruction.
Recent Neovim.
Install this plugin using your plugin manager of choice. For example, when using vim-plug:
Plug 'ashfinal/qfview.nvim'
Then add the following lua snippet to your init.lua
:
require('qfview').setup()
When using lazy.nvim:
{
"ashfinal/qfview.nvim",
event = "UIEnter",
config = true,
},
We don't have any configuration options yet.
MIT.