jceb/blinds.nvim

github github
color
stars 12
issues 0
subscribers 2
forks 1
CREATED

2017-09-23

UPDATED

last month


blinds.nvim emphasizes the current window

blinds.nvim emphasizes the current window by shading the non-active windows.

Blinds animation

Installation

Lazy:

{
  -- https://github.com/jceb/blinds.nvim
  "jceb/blinds.nvim",
  config = true,
  opts = {
    -- see default configuration
  }
}

Default configuration

Place any value that shall customized inside opts:

{
  -- background color
  guibg = "#969694",
  -- Limit blinds to certain file types, "*" matches all file types.
  ft = { "*" },
  -- Exclude certain file types from blinds.
  excluded = { "aerial" },
}

Requirements

neovim version 0.2 and above that supports the winhighlight feature.