Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/DarrellBrogdon/trnu.nvim
- Owner: DarrellBrogdon
- License: mit
- Created: 2024-10-23T17:40:14.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-23T19:18:03.000Z (2 months ago)
- Last Synced: 2024-10-24T01:54:37.882Z (2 months ago)
- Language: Lua
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- my-neovim-pluginlist - DarrellBrogdon/trnu.nvim - commit/DarrellBrogdon/trnu.nvim) ![](https://img.shields.io/github/commit-activity/y/DarrellBrogdon/trnu.nvim) (Other Standard Feature Enhancement / Number)
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,
}
```