From 5217cbe06b5e611e931402ed8af4f40650740f53 Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Mon, 15 Jun 2020 21:06:12 -0500 Subject: [PATCH] nvim: incremental commands --- nvim/init.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvim/init.vim b/nvim/init.vim index 2e56d8c..fbb0156 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -21,6 +21,9 @@ call plug#end() set nonumber norelativenumber nnoremap :set number! relativenumber! +" show the effects of a command incrementally, as you type +set inccommand=nosplit + " clear highlighting with escape key nnoremap :noh