numToStr / FTerm.nvim

:fire: No-nonsense floating terminal plugin for neovim :fire:
MIT License
721 stars 24 forks source link

border highlight #22

Closed horseinthesky closed 3 years ago

horseinthesky commented 3 years ago

Is there a way to control border highlighting?

Looks inaccurate by default. image

In Floaterm I do

highlight link FloatermBorder Normal

Which looks much nicier image

numToStr commented 3 years ago

This plugin uses neovim's native floating window feature which comes with its own highlights. There was a similar issue #19 raised before but it turns out to be a theme issue.

horseinthesky commented 3 years ago

Got it. The default floating windows uses FloatBorder group which in turn links to VertSplit (in case anybody faces this issue).

Doing

highlight VertSplit guibg=NONE ctermbg=NONE

makes the windows look nice: image