Use lsp_lines to load pr comments into neovim using vim quickfix list and diagnostics
Example:
- Requires gh, follow installation steps in the link.
- Requires lsp_lines, follow installation steps in the link.
{
'mcnangus/pr-comments.nvim',
config = function()
-- Call the function to load the quickfix list as diagnostics
vim.keymap.set('', '<Leader>k', require('pr-comments').fetch, { desc = 'Toggle gh pr comments' })
end,
}