b0o / incline.nvim

🎈 Floating statuslines for Neovim, winbar alternative
MIT License
759 stars 14 forks source link

How to hide incline only if current window is active and cursor is on first line? #40

Closed isaif closed 1 year ago

isaif commented 1 year ago

Currently incline is hidden on unfocused window also if I use

hide = {
  cursorline = true
}
isaif commented 1 year ago

This option is what was required. It is already in docs.

hide = {
  cursorline = 'focused_win',
},