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

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.

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