Simple plugin to cycle between nvim-dap's breakpoints and jump to current stopped line with keymappings.
Using packer.nvim
use 'ofirgall/goto-breakpoints.nvim'
local map = vim.keymap.set
map('n', ']d', require('goto-breakpoints').next, {})
map('n', '[d', require('goto-breakpoints').prev, {})
map('n', ']S', require('goto-breakpoints').stopped, {})