Skip to content

nacro90/numb.nvim

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
August 22, 2023 01:42
July 12, 2021 17:49
April 6, 2021 18:32
July 12, 2021 17:53

numb.nvim

numb.nvim is a Neovim plugin that peeks lines of the buffer in non-obtrusive way.

Features

Peeking the buffer while entering command :{number}

demo

The colorscheme is vim-substrata

Installation

Packer

use 'nacro90/numb.nvim'

Paq

paq 'nacro90/numb.nvim'

Plug

Plug 'nacro90/numb.nvim'

Usage

Setup with default options:

require('numb').setup()

If you are using a init.vim instead of init.lua, you will need to load the plugin like this:

:lua require('numb').setup()

Disable the plugin globally:

require('numb').disable()

After you disable the plugin, you can re-enable it by calling the setup again.

Options

You can customize the behaviour with following:

require('numb').setup{
  show_numbers = true, -- Enable 'number' for the window while peeking
  show_cursorline = true, -- Enable 'cursorline' for the window while peeking
  hide_relativenumbers = true, -- Enable turning off 'relativenumber' for the window while peeking
  number_only = false, -- Peek only when the command is only a number instead of when it starts with a number
  centered_peeking = true, -- Peeked line will be centered relative to window
}

After running setup, you are good to go. You can try with entering a number to the vim command line like :3.

When you disable numb, your options are kept in the module level. So after you disable it, if you call setup() with no overrides, numb will be enabled with your customized options (or default ones if you don't have any). You can override the options again with calling setup{...} as mentioned above.

About

Peek lines just when you intend

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages