Open shmerl opened 10 months ago
This can be useful for those who don't have the custom / patched font and want to use their current font's Unicode symbols for UI elements.
I managed to make it work with something like this:
local ui_config = { icons = { expanded = "🞃", collapsed = "🞂", current_frame = "→" }, controls = { icons = { pause = "⏸", play = "⯈", step_into = "↴", step_over = "↷", step_out = "↑", step_back = "↶", run_last = "🗘", terminate = "🕱", disconnect = "⏻" } } } require("dapui").setup(ui_config)
It can be useful to document in the readme, so users won't need to dig through documentation to find how to configure it, since it looks like a common thing someone would want to do.
@shmerl thanks a lot for this!
You're welcome!
This can be useful for those who don't have the custom / patched font and want to use their current font's Unicode symbols for UI elements.
I managed to make it work with something like this:
It can be useful to document in the readme, so users won't need to dig through documentation to find how to configure it, since it looks like a common thing someone would want to do.