telescope-dap.nvim icon indicating copy to clipboard operation
telescope-dap.nvim copied to clipboard

is it possible to customize the themes?

Open norseghost opened this issue 2 years ago • 3 comments

I want to set a few settings differently; such as using the cursor theme for the 'continue' list. I am unable to figure out how though.

norseghost avatar May 05 '22 00:05 norseghost

Would you like to customize the Telescope theme? If so, I want the same.

Here it is with telescope-dap.nvim. The height of the frame grows to full screen.

image

And here it is without—a centered dropdown that's much smaller.

image

wassimk avatar Mar 09 '23 02:03 wassimk

I tried to send opts in like this. I was able to get it to look like so. But, still not the more straightforward drop-down I showed above.

require'telescope'.extensions.dap.configurations({ layout_strategy = 'center', layout_config = { height = 20, width = 100, prompt_position = 'top', preview_cutoff = 5000 } })

image

wassimk avatar Mar 09 '23 02:03 wassimk

Hello @wassimk, it looks like you are using dressing.nvim which already replaces the default internal dap ui by overwriting vim.ui.select. My solution to get the straight forward drop-down would be to disable overwriting the internal ui: https://github.com/nvim-telescope/telescope-dap.nvim/pull/19

mjendruk avatar Aug 01 '23 07:08 mjendruk