Removing or changing window border color for telescope select #62
-
How do I remove the cyan colored border from this window? What highlight group do I need to adjust? This is code action using the |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Since this is a question about the telescope UI it would be more appropriate to ask it at telescope.nvim, but that is probably the built-in |
Beta Was this translation helpful? Give feedback.
-
Ah, I think it's might have to do with |
Beta Was this translation helpful? Give feedback.
-
Okay, figured it out. I had to pass use({
"stevearc/dressing.nvim",
config = function()
require("dressing").setup({
select = {
telescope = {
borderchars = { " ", " ", " ", " ", " ", " ", " ", " " },
},
},
})
end,
}) I had assumed Thanks for your help. |
Beta Was this translation helpful? Give feedback.
Okay, figured it out. I had to pass
borderchars
to telescope.I had assumed
select
inheritsTelescope's
settings, but it doesn't. Thankfully, there's a way to pass in the setting you care about.Thanks for your help.