nkakouros-original/numbers.nvim

github github
utility
stars 33
issues 0
subscribers 1
forks 2
CREATED

2022-04-15

UPDATED

2 years ago


numbers.nvim

Disables relative line numbers when they don't make sense, e.g. when entering insert mode.

A Neovim plugin written exclusively in Lua.

Inspired by numbers.vim.

Installation

Run the setup() function from the numbers module, e.g:

lua require('numbers').setup()

Configuration

Pass a table to the setup function with any of the following options:

{
  excluded_filetypes = {
    'nerdtree',
    'unite',
    -- etc
  }
}