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