Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: define NormalFloat and FloatBorder
This brings popup windows more in line with each other. The change was prompted by `ChatGPT.nvim` plugin that use telescope as a dependency, but the borders looked off. `NormalFloat` was linked to `Pmenu`, `Pmenu` is used for completion, and needs to be a different background color than NormalFloat, so I set NormalFloat to srcery_black `FloatBorder` was linked via `FloatBorder` -> `WinSeparator` -> `VertSplit` which is set to `bright_white`, but Telescope uses white as the border color, so I define that for `FloatBorder` as well ```viml call s:HL('VertSplit', s:bright_white, g:srcery_bg) ```
- Loading branch information