Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 516 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 516 Bytes

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