Disassembly View

disassembly view

The disassembly view is a custom view , built on top of nvim-dap-disasm . To enable it, you need to install nvim-dap-disasm. After installing the extension, add it to your winbar.sections table:

return {
    winbar = {
        sections = {
            "disassembly",
            ...,
        },
    },
}
lua
NOTE

If using lazy.nvim (or any means of lazy loading, in general), make sure to add nvim-dap-view as a dependency for nvim-dap-disasm and NOT the other way around. That's necessary for nvim-dap-disasm to recognize nvim-dap-view's installation. A sample (lazy.nvim's) spec would be:

return {
    {
        "Jorenar/nvim-dap-disasm",
        dependencies = "igorlfs/nvim-dap-view",
        config = true,
    },
}
lua