Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 449 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 449 Bytes

Overview

Neovim cursor style. Currently it supports:

  • Cursor color

Cursor Color

Install

Install with vim-plug:

Plug 'phanviet/nvim-cursor'

Usage

Cursor color only works if termguicolors is set

set termguicolors

lua << EOF
require('nvim-cursor').setup({
  normalModeColor='red',
  insertModeColor='#FFAA00'
})
EOF