https://github.com/dev-cetera/nvim-color-line-numbers-by-mode
A plugin for NeoVim to color the line numbers based on the current mode to help you better see the mode you're in.
https://github.com/dev-cetera/nvim-color-line-numbers-by-mode
extension neovim neovim-plugin
Last synced: 10 months ago
JSON representation
A plugin for NeoVim to color the line numbers based on the current mode to help you better see the mode you're in.
- Host: GitHub
- URL: https://github.com/dev-cetera/nvim-color-line-numbers-by-mode
- Owner: dev-cetera
- Created: 2024-11-20T05:08:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-20T08:40:59.000Z (over 1 year ago)
- Last Synced: 2025-08-18T05:42:19.961Z (10 months ago)
- Topics: extension, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NeoVim Extension
## nvim-color-line-numbers-by-mode
A plugin for NeoVim to color the line numbers based on the current mode (Normal, Insert or Visual) to help you better see the mode you're in. The line colors correspond to the default mode colors of NeoVim.
## Installing with Lazy
```lua
return {
{
"DevCetra/nvim-color-line-numbers-by-mode",
lazy = false, --load during startup
config = function()
require("nvim-color-line-numbers-by-mode").setup()
end,
},
}
```