Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/DarrellBrogdon/trnu.nvim

Quickly toggle number and relative number
https://github.com/DarrellBrogdon/trnu.nvim

Last synced: 2 months ago
JSON representation

Quickly toggle number and relative number

Awesome Lists containing this project

README

        

# trnu.nvim - Toggle number and relative number quickly

This plugin allows you to quickly toggle `number` and `relativenumber` on or off using either `:Trnu` or `tn`.

## Installation

Add this code to `~/.config/nvim/lua/plugins/trnu.lua` and restart Neovim:
```lua
return {
'DarrellBrogdon/trnu.nvim',
lazy = false,
config = function()
require("trnu").setup()
end,
}
```