From a95dc18419119618b20a65f60eb6ade9bac9ad15 Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Tue, 16 Jun 2020 01:55:19 -0500 Subject: [PATCH] nvim: highlight cursor line --- nvim/init.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvim/init.vim b/nvim/init.vim index fbb0156..1074556 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -24,6 +24,9 @@ nnoremap :set number! relativenumber! " show the effects of a command incrementally, as you type set inccommand=nosplit +" highlight the cursor line, toggle with \c +nnoremap c :set cursorline! + " clear highlighting with escape key nnoremap :noh