Skip to content

nkakouros-original/numbers.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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
  }
}